#whoami_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1298408907764662295
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- whoami_api, 4 days ago, 9 messages
- whoami_code, 4 days ago, 31 messages
Hi there
Hello
If you're in test mode, you should use one of the test bank account numbers listed here: https://docs.stripe.com/connect/testing#account-numbers
Do you have a request ID for your call to create an external account?
thanks, yes I tried the test bank account numbers, and they are added to the account immediately
my question is that in prod, live mode, is it the same behaviour?
or does Stripe have some kind of bank account validation process during the api call to add the bank account to the connected account
We recommend adding validation yourself, based on the bank account formats listed here: https://docs.stripe.com/connect/payouts-bank-accounts?bank-account-collection-integration=direct-api&bank-account-collection-method=manual-entry
This is assuming you're collecting bank account details yourself versus using hosted onboarding
what's Connect Onboarding web form
I'm creating custom accounts and handle onboarding within my platform, then this option is not possible right?
With Custom accounts, you can either create your own onboarding flow or use hosted onboarding, you can't use both.
so with custom accounts, how should the "add external account flow" work from frontend to backend?
I saw there's a create bank account token in Stripe API, but I don't see one in Stripe sdk. How should frontend pass bank account information like routing # and account # to backend securely?
You can use createToken on the frontend to create a token and pass this to your backend: https://docs.stripe.com/js/tokens/create_token?type=bank_account
We are using react native, seems like It's only limited to card type https://stripe.dev/stripe-react-native/api-reference/modules/Token.html#CreateCardTokenParams
Documentation for @stripe/stripe-react-native
Hm, no, I think you might be misreading this. Token type can be one of these: https://stripe.dev/stripe-react-native/api-reference/modules/Token.html#Type
And you'd use this if you're working with bank_account: https://stripe.dev/stripe-react-native/api-reference/modules/Token.html#CreateBankAccountTokenParams