#vivsriva01
1 messages · Page 1 of 1 (latest)
Hi
Hi!
Hi
I am here, can you please help with (2) and (3). I found the answer to (1) here at: https://stripe.com/docs/connect/express-accounts#refresh_url
That is correct, that link takes them through Stripe onboarding: https://stripe.com/docs/api/account_links/create. You can't expire that link manually.
Can you clarify what you mean with 'Can I simultaneously be able to call stripe.Account.create_login_link and present a login link to the user?'?
You can test this using your test api key, https://stripe.com/docs/api/account_links/create to see what onboarding looks like.
You create the Account, then create the AccountLink.
While the user has not completed the on-boarding and we have provided the user with the "account link", can I go ahead and generate the "login link" or do I have to wait for the user to complete on-boarding before creating the "login-link"?
Is there a way to query if the user's onboarding is complete, or is there a webhook for it?
I do not believe you need to wait for them to onboard to create the login link. You can listen to this event, https://stripe.com/docs/api/events/types#event_types-account.updated to get notified when account status or property has changed.
ok perfect, thank you.
Alternatively, you can list your accounts, https://stripe.com/docs/api/accounts/list and looks at requirements that are currently due, https://stripe.com/docs/api/accounts/object#account_object-requirements-currently_due. If there is not, they have onboarded
Thanks for your help.