#tochinicky

1 messages · Page 1 of 1 (latest)

regal yachtBOT
runic zenith
#

Can you elaborate a bit more? What API(s) are you using?

scenic folio
#

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

runic zenith
#

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?

scenic folio
#

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

runic zenith
#

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.

fallow marlin
#

This is a complicated question, and can happen in many parts

#

I suggest first reading our docs on API account identity verification

scenic folio
#

{
"verification": {
"details": null,
"details_code": null,
"document": null,
"additional_document": null,
"status": "unverified"
},
...
}

#

does the status change?

fallow marlin
#

Yes that would be updated following a verification

scenic folio
#

and can i use it to determine a connected account is verified or not??

scenic folio
fallow marlin
#

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

scenic folio
fallow marlin
#

Yes, that is possible

scenic folio
#

wow

#

that's tricky

fallow marlin
#

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

scenic folio
#

okay that's fine