Passing Rails + Stripe Sums

When trying to transfer an amount from an admin account to another account in Stripe, the following error appears:

Transfer to other Stripe accounts is only possible if you are registered with the Connect app. For that see https://stripe.com/docs/connect/getting-started .

But I have registered the application.

I am doing oauth to get authentication from admin and transfer the amount to another connected account.

 Stripe::Transfer.create(
 :amount => 1000,
 :currency => "usd",
 :destination => "acct_t64sGCKrnINZrjyc"
 )

      

Does anyone know why this is happening?

+3


source to share





All Articles