#peter.toth - Express requirements
1 messages · Page 1 of 1 (latest)
You will want to check the capabilities property to see the status of each capability https://stripe.com/docs/api/accounts/object#account_object-capabilities
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
details submitted is just whether they have submitted their details to us. I don't think that necessarily implies they are enabled for everything
There is probably also a webhook for this if you want to listen for this data rather than retrieve it
Thanks for the quick reply!
I'll listen for the webhooks.
So the details_submitted is sort of shows that the user provided all the data and now we are waiting for Stripe to say the user needs to do something or we are all good?
In other words we don't send the express user back to the Stripe onboarding flow until the details_submitted is true?
I am actually not immediately sure when that field flips. It may be best to test this and check if that field flips when you think it does
You may also want to check the requirements hash https://stripe.com/docs/api/accounts/object#account_object-requirements
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Cool, will do, thanks again!