#angel785420
1 messages · Page 1 of 1 (latest)
If you create another Account Link for onboarding for the same account, any steps already completely by the user should still be saved and they'd only need to provide information not previously entered.
oh ok got it.
I was also wondering how I get the account info and if its verified etc? the documentation says charges_enabled but not sure how to get that
Typically you'd want to be listening to account.updated items to check for requirements and capabilities being enabled
But you could also retrieve the account then check the object
https://stripe.com/docs/api/accounts/retrieve?lang=curl
https://stripe.com/docs/api/accounts/object?lang=curl#account_object-capabilities
https://stripe.com/docs/api/accounts/object?lang=curl#account_object-requirements-currently_due
You can read more about tracking requirements and capability status with the API here: https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
As for accessing the information provided by the account, that's not always available depending on the type of account and information sensitivity. What kind of accounts are you using and what information are you trying to access?