is there way in php check if standalone account connected stripe application verified (meaning user has confirmed identity uploading id document approved stripe)?
simply retrieve account:
$account = \stripe\account::retrieve("acct_...");
you can check following boolean attributes:
$account->details_submitted
: whether or not account details have been submitted yet. standalone accounts cannot receive transfers before true.
$account->charges_enabled
: whether or not account can create live charges
$account->transfers_enabled
: whether or not stripe send automatic transfers account. false when stripe waiting additional information account holder.
(source: description of account object.)
Comments
Post a Comment