I'm developing an Android application for Property rental Management where Tenant will be able pay Rent directly to Landlord . I would like to use Braintree as it supports Credit/Debit cards , PayPal & Google Pay.
What I have tried so far ,
- I already have tried creating sandbox account of Braintree & performed simple payment transfer to single merchant.
- Explored Stripe Connect but looks time consuming documentation.
- Also explored Braintree Direct but it shows documentation same as single merchant payment transfer. I've followed steps mentioned & it lead me to implementation of single merchant payment transfer.
My questions:
- How a user can send payment directly to another user using Braintree either through Android SDK or PHP sdk on server ?
- Do I need Business account of Braintree to implement above service?
- Can you recommend any example regarding buyer to seller payment integration regardless of any programming language but using Braintree / Paypal ?
Here is server code to process Payment according to documentation:
$result=Braintree_Transaction::sale([ 'amount'=>$amount, 'paymentMethodNonce'=>$nonce, 'options'=> [ 'submitForSettlement'=>True ] ]);
I'm open to Any other solutions if it fits my needs with example or reference document.
So , is there any parameter to supply through which we can transfer payment to receiver directly?
I know there are lots of questions above but I'm really confused as there is no proper documentation on android app & not found proper example to integrate.
Any guidance would be helpful.