#barry
1 messages · Page 1 of 1 (latest)
Hello, is this with Custom, Express, or Standard accounts?
Standard
I think you can get events when the requirements change and that will include info on when their requirements are due. Checking in to that now...
thanks
So basically the thing to look at here is the requirements hash on the account object. You can check what requirements are currently do and we have a current_deadline property that shows when the account will be disabled without them. https://stripe.com/docs/api/accounts/object#account_object-requirements-currently_due
You can listen to account.updated to see when new requirements are added
https://stripe.com/docs/connect/account-capabilities#viewing
great! Thank you!