#Wilder-Connect
1 messages ยท Page 1 of 1 (latest)
Hi there, you can check the account's requirements.currently_due array to understand what information are needed
What type of connect account are you using?
Wilder-Connect
It would appear that I am missing quite a substantial amount:
Are these pieces of information best added when creating an account, or should I use the update method to add this?
Is it a custom account? we recommend Connect Onboarding for custom account to collect the information
This is a custom account.
Is the flow a link I send to them with URL parameters? Where would I be able to find more about this?
Thanks - looks like I need to wait two days or so to get verified to be able to use it from what I understand! At least for live mode. This should work in test ๐
No problem. I'd also want to point out that the connect onboarding doesn't collect bank account details (aka external_account), you should use Stripe Element to collect the info and update it for custom account.
Connect Onboarding for Custom Accounts does not collect the external_account requirement. To collect external_account, use Stripe Elements or consider upgrading to Express accounts. Contact us to learn more.
Here's the relevant Stripe API https://stripe.com/docs/api/external_account_bank_accounts/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.
Yup - just set up onboarding and completed my first flow and I do see this.
Where it says external_account=btok_1L6STaGEi8jScj3fuZmvogLF, the value in the key-value pair is a token.
Would I want to refer to https://stripe.com/docs/api/tokens to accomplish this?
It depends on where you collect the bank info. If it's collected from your webpage, you can use https://stripe.com/docs/js/tokens_sources/create_token?type=bank_account to create a token for bank account
If your backend already has the bank details, you can pass the details directly through API without using token https://stripe.com/docs/api/external_account_bank_accounts/create#account_create_bank_account-external_account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Amazing - thank you so much ๐
So I was able to create an account, send them to the area to onboard (making it super easy), and now I will have a form where they can enter their info, make a call to create a token, and then use that token to link their bank!
Nice, it sounds like a complete flow to me!