I have a ruby on rails web app where I have some users and clients.
I want to get amount from user via stripe and transfer some amount to my relevant client's bank account.
How can I do that.
I have a ruby on rails web app where I have some users and clients.
I want to get amount from user via stripe and transfer some amount to my relevant client's bank account.
How can I do that.
I believe Stripe Connect ( https://stripe.com/connect ) would allow you to do a multi-level marketshare.
It wouldn't allow you to directly transfer money into a client's bank account but it does allow you to pay your user directly which will then enable them to transfer it to their bank account themselves.
Finally, I believe this is also more secure than trying to safely store bank account information on your end.
You can do the transfer in two way the old way from doc is in two steps:-
Step 1:- Collecting recipient details(You will get code on the link Ruby or PHP)
Step 2:- Creating transfers
The second way you can do this through Managed Account.
If you are using PHP then follow github it's too easy.