#liam_25786
1 messages · Page 1 of 1 (latest)
Hello! Not sure I understand the question? If you're using OAuth there should be no account creation necessary
I'm testing setting up accounts for my users - https://stripe.com/docs/implementation-guides/standard-connect/connecting-accounts#connect-onboarding
There are two methods in the docs - 1) API (Account, Account Links); 2) OAuth
API is the recommended way (per the docs)
I want to go with the API integration, but I don't know how to force skip registering all of the details
You don't need to provide any details really, they're basically all optional and will be collected directly from the user in the hosted onboarding UI: https://stripe.com/docs/connect/standard-accounts
Ah I think I understand. So I can basically bypass the user sign-up in testing, I just need to do the account creation.
Yep, exactly! All we require is the type parameter
The Account Link that you create and redirect the user to will collect all other required fields from them
Makes sense. I was thinking that the 'force-skip' on the OAuth route did further verification simulation - but I've just created accounts both ways and they look pretty much the same.