#tochinicky
1 messages · Page 1 of 1 (latest)
Can you elaborate a bit more? What API(s) are you using?
i'm using accounts.create
there is an api that will redirect a user to create or update a connected account on stripe
how do i know if stripe has verified the information provided by the user
Verified which information specifically? You said "payout account", so I just want to clarify what you're looking for. Can you be a bit more explicit and maybe provide some details about why you need the info?
so if a client hasn't provided information on the connected account, the account will be restricted right?
whenever the client updates the connected account using account.update, how would i know when the connected account is verified by stripe
so if a client hasn't provided information on the connected account, the account will be restricted right?
Correct. Certain info is required to keep the accounts charges and payouts enabled.
This is a complicated question, and can happen in many parts
I suggest first reading our docs on API account identity verification
Specifically, the details here: https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
{
"verification": {
"details": null,
"details_code": null,
"document": null,
"additional_document": null,
"status": "unverified"
},
...
}
does the status change?
In particular you can inspect the payouts_enabled attribute if that is your primary consideration:
https://stripe.com/docs/api/accounts/object#account_object-payouts_enabled
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yes that would be updated following a verification
and can i use it to determine a connected account is verified or not??
and can i use it to determine a connected account is verified or not??
The doc does help explain this -- verification can happen in stages, and further verification/information may be required at later times
So "yes" but its important to understand how to track requirements and how to handle that within accounts
i understand, would the account still be verified, and also request more requirements???
Yes, that is possible
Sorry, to clarify, the requirements can come later
if there are currently some outstanding requirements it can be an active account, with some information that will be due soon/later
Typically you're looking for the requirements to be empty and your capabilities to be active
okay that's fine