0

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.

HaveNoDisplayName
  • 8,291
  • 106
  • 37
  • 47
Asnad Atta
  • 3,855
  • 1
  • 32
  • 49
  • Did you get any solution for this? – Bik Dec 31 '15 at 12:31
  • 1
    Besides the fact that you have a Rails app, I can't see how this question is connected to Rails. It seems to me your question is about how Stripe works. – Simone Carletti Dec 31 '15 at 12:36
  • actually i am using php and was following https://stripe.com/docs/tutorials/sending-transfers. But this is not working. It has been said deprecated. – Bik Dec 31 '15 at 12:38

2 Answers2

1

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.

Alexandre Voyer
  • 809
  • 6
  • 11
0

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.

Learner
  • 411
  • 4
  • 13