#jaseem shahal - Connect
1 messages · Page 1 of 1 (latest)
Hello! It sounds like you want to use Connect: https://stripe.com/docs/connect
'account' => 'acct_1032D82eZvKYlo2C', how can get the value
Can you provide more details? Value of what? What's the context?
sory
@vivid tinsel This is where you should be replying.
and also i can generate account using api?
Yes, you can create Accounts using the API: https://stripe.com/docs/api/accounts/create
can i transfer to external bank account using this way?
What do you mean?
That API creates a Stripe Account. A Stripe Account can have an external bank account that funds get paid out to.
i need to pay direct to the seller or vendor bank account
Yeah, Connect will let you do that. I recommend reading through the docs here: https://stripe.com/docs/connect
https://stripe.com/docs/connect/collect-then-transfer-guide
this one right?
how can validate bank account using stripe?
our product going to launch in canada market, so any extra bank details need for the payout?
What type of connected accounts are you going to use?
I don't believe Stripe validates bank accounts beyond basic checks on the account number format and things like that.
external_account=btok_1KGS9Y2eZvKYlo2CT2Qie6UP
how to get 'external_account'?
Are you asking how to create a btok_xxx object? You would do this through the API (see https://stripe.com/docs/api/tokens/create_bank_account) or if you're using ACH you can also get one back from Plaid (https://stripe.com/docs/ach#using-plaid)
$stripe->accountLinks->create(
[
'account' => 'acct_1032D82eZvKYlo2C',
'refresh_url' => 'https://example.com/reauth',
'return_url' => 'https://example.com/return',
'type' => 'account_onboarding',
]
);
what is refresh_url and return_url?
We explain all of this in our API reference - https://stripe.com/docs/api/account_links/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.