Reputation: 265
Is there a way in php to check if a standalone account connected to your stripe application is verified?
Thank you
Upvotes: 5
Views: 5807
Reputation: 31
Those three fields tells you if an account is valid and active and not that is verified, but what if you need to check if user has uploaded an id document to verify his identity? If your business requires that kind of information but you don't have resources to manage accounts and you want to use standalone accounts what could you do? Verification of users (to check they are what they say there are) could be very important for particular type of service.
Thanks
Upvotes: 1
Reputation: 25552
With standalone accounts you'd check details_submitted
on the Account object. If it's true
it means the account has been activated while if it's false
it means it's been created but not activated yet.
Unless you use Deferred accounts though an account can't be connected to your Production platform without being activated already.
Upvotes: 0