#devik
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
account.updated event is send only once for each action, e.g. when I fill out the hosted onboarding page, I will receive the event only once when the verification is fully completed
Not necessary. If Stripe performs other async actions, it will also sendaccount.updatedfor the outcome
If the account object has non-empty requirements or any "disabled" value in capabilities, it means the user needs to provide some missing information and I should generate a new account link.
Yes, that's right! Here's the information to handle such a case (Step 4 and 5): https://stripe.com/docs/connect/custom/hosted-onboarding#new-reqs-due
Not necessary. If Stripe performs other async actions, it will also send account.updated for the outcome
What kind of async actions are possible?
I guess my question is really - how can I determine the account has a status of "Pending" similar to that in the Dashboard and no action from the user is required until Stripe finishes some operations.
Or perhaps - if I receive account.updated and account object has non-empty requirements or any "disabled" value in capabilities, can I always safely assume that I can generate account link and send the user for onboarding again?
What kind of async actions are possible?
For example, document can take some time to verified.
I guess my question is really - how can I determine the account has a status of "Pending" similar to that in the Dashboard and no action from the user is required until Stripe finishes some operations.
Or perhaps - if I receive account.updated and account object has non-empty requirements or any "disabled" value in capabilities, can I always safely assume that I can generate account link and send the user for onboarding again?
The process will be listening toaccount.updatedevent and look forrequirementsfor the incomplete requirements. In the case thatrequirementsisn't empty, a new account link should be created and send to the user to complete the remaining onboarding process.
Do I need to check capabilities or just requirements are sufficient to decide if any action is required without delving into details?
Just requirements should be sufficient: https://stripe.com/docs/connect/custom/hosted-onboarding#new-reqs-due