neeraj
neeraj

Reputation: 740

Third party fund transfer on Stripe Cloud module for Parse

I want to create recipient on stripe using cloud module on parse. I am able to create customer (e.g. using Stripe.Customers.create()) and able to charge customer(String.Charges.create()) from his credit card. but not able to create a recipient (Stripe.Recipients.create()) for transfer the money to his account. This create function for Recipients is not defined .

But this same thing available for Node.js (https://stripe.com/docs/api/node#create_recipient).

any solution for this ?

Upvotes: 0

Views: 414

Answers (1)

Lifecube
Lifecube

Reputation: 1188

If it does really not exist for the moment. You could just issue the HTTP request based on their protocol. It should work. The parameter required you could take from the curl samples: https://stripe.com/docs/api/curl#create_recipient

Upvotes: 2

Related Questions