#Fran-account-status
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ you can retrieve the account and then look at the information on it to gather some insight.
https://stripe.com/docs/api/accounts/retrieve
Particularly you'll want to look at capabilities to ensure the account has the capabilities required for your flow, and requirements to see if there are any outstanding/upcoming requirements.
payouts_enabled is another field that sheds some light on the state of the account.
Oki, but there is no field like email that directly gives you the status?
No, that 'Complete' tag shown on the dashboard is calculated by the dashboard itself.
Oh, ok. And is there any webhook to listen for the account updates? Because I couldn't retrieve any event using the stripe cli regarding that
Yup, account.created and account.updatedare good options, but you need to set up a connect webhook to listen to events from connected accounts:
https://stripe.com/docs/connect/webhooks
Oki ๐ many thanks for the help!