Abdul Aziz
Abdul Aziz

Reputation: 180

Bank details for a custom stripe connect account

When dealing with Stripe's custom connect accounts, do I need to enter the bank information manually using their API or is it possible to get the bank information as part of the onboarding process that Stripe offers for custom accounts?

I am using the following onboarding to allow Stripe to handle the entire verification process for my custom connect accounts: https://stripe.com/docs/connect/connect-onboarding

Upvotes: 2

Views: 989

Answers (1)

karllekko
karllekko

Reputation: 7198

The hosted onboarding does not collect bank account details as part of the flow, by design(it only handles identity verification). This is information you'd need to collect from the user in your own onboarding forms and then pass to the API to create the payout destination via the ExternalAccount APIs https://stripe.com/docs/api/external_accounts

For example, as part of your onboarding flow, you might build a page that collects some basic information from the user like their email address, uses stripe.js to collect bank account details, and then submit to your server to create the Account object and then send the user through the hosted identity verification flow.

Upvotes: 1

Related Questions