#dalbeer
1 messages · Page 1 of 1 (latest)
Hi there!
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
Can you copy past it here.
actually its a script not the api
There is an API request starting with req_ in that screenshot, please copy past it here
Yes thanks.
You are passing an accountId in the place of external bank account
You want to create a payout for that connected account ?
Are you missing the Stripe Auth header ?
https://stripe.com/docs/connect/authentication#stripe-account-header
yes for particular user
didn't know about this
Try creating the Payout using the Auth header instead of using the desintation field.
For what use case ? bu in general you use use external bank account is test mode
can you tell me how can i create/retrieve external bank account ?
I invite you to check the official documentation:
https://stripe.com/docs/api/external_accounts
is bank account created while onboarding the account from this stripe.AccountLink.create()?
i have created the express type account after onboarding i fill the test bank account details too
Yes for Express Connect Account, you can collect the Bank account using the AccountLinks too
after doing the above now i working on the payouts then i got error of no such extenal account i missed something while creation of the payouts
Hi! I'm taking over from my colleague. Please, give me a moment to catch up.
Where do you see the error?
actually i am creating the payouts for that i got error https://i.imgur.com/wPxADN9.png
the whole process is that first i created the account then do this stripe.AccountLink.create() after that creating the payouts got error
Could you please copy the Request ID req_xxx?
req_CR4DnjUx4mWvKV
Oh, you are using Stripe account ID instead of External (bank) account ID.
But what are you trying to do?
Do you want to
- Transfer from Platform to Connected account? or
- Payout from Connected account to bank (external) account?
how can i get External (bank) account ID ?
i am confused now both are different ?
Yes, they are different. Depends what you're trying to do.
Let's first find out what are we trying to do here.
send payout from the platform to the connected account
That's called Transfer, and you need to use this API call with destination: acct_xxx: https://stripe.com/docs/api/transfers/create#create_transfer-destination
can you also know about Payout from Connected account to bank (external) account?
this if i do how can i ?
destination is optional parameter, so if you avoid it, funds will just be paid out to your default bank account: https://stripe.com/docs/api/payouts/create
ok thanks if i got any issue will pin you
Happy to help!