#prycel-account-requirements
1 messages · Page 1 of 1 (latest)
details_submitted only tells you whether the onboarding process has been completed. It's different from charges_enabled because we may need to verify/validation some of the information (so submitting all the onboarding information does not necessary mean the charges are enabled)
charges_enabled mean that user is ready to recive money from our platform and funds will be transfered to him?
if charges_enabled = false do we need to handle it somehow and notify user?
If charges_enabled is false you need to see if there's any missing requirements and ask for more information if there's any more information that needs to be collected
is there a way via api to see if there's any missing requirements and what is missing?
Yup, it should be included if you retrieve an Account (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.
thanks! 🙂