#angel-connect-onboarding
1 messages · Page 1 of 1 (latest)
@austere sierra what's your exact question?
so I see the documentation says to create stripe.AccountLink.create(
account='{{CONNECTED_ACCOUNT_ID}}',
refresh_url="https://example.com/reauth",
return_url="https://example.com/return",
type="account_onboarding",
) for the link but my question is what if the user does not have a stripe account just yet and they need to create one?
Usually as a platform the first step is for you to create the account and then redirect them to that AccountLink
angel-connect-onboarding
@austere sierra did you have more context or questions?
no that's all. got it is it possible to check if they successfully onboarded?
You create the account, it's connected to your platform so you have full control over it, including looking at what information is missing, and such. See https://stripe.com/docs/connect/identity-verification-api
thank you
sorry one more question. how long does the verification process take to connect users? I think I remember waiting 2-3 days for my account to get all privileges
it's all automated and we verify information asynchronously in most cases in a few minutes
as a platform you listen for account.updated Events on your Connect WebhookEndpoint to know when an account is ready: https://stripe.com/docs/connect/webhooks
oh ok got it. thanks for the help
sure thing!