#mertavelli
1 messages ยท Page 1 of 1 (latest)
Hi there!
So you don't want to use the Custom onboarding hosted by Stripe? https://stripe.com/docs/connect/connect-onboarding
Yes I prefilled every field of the Custom onboarding with the information the user has given in my register form now I want that this verification overview is also "prefilled" All in all I dont want that the user has to go to the onboarding hosted by stripe
Hi there ๐ jumping in as my teammate needs to step away soon. You do not need to use our hosted onboarding flow for Custom Connected Accounts, you can collect and provide all information yourself via the API.
Yes, I know, but how can I ensure that the user does not have to confirm the verification overview?
because the account will not be created until the user has confirmed the verification summary.
The user does not need to go to the verification overview at all for Custom Connected Accounts. The account is created when you make the request to create it, which you're doing in your code with this call:
const account = await stripe.accounts.create({...});
so I can delete the part with onboarding link?
Yup (though I would recommend commenting it out until you're positive you don't want to use that path)
Okay thank you! ๐
Any time!