#Vish-connected-acc-status
1 messages · Page 1 of 1 (latest)
You'd mostly compute to from the requirements field, alongside charges_enabled and payouts_enabled.
There's no 1 field that denotes the 'status'
From which API can I get these values?
The Account object: https://stripe.com/docs/api/accounts/object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Generally you'd listen to account.updated events which would fire and reflect the status of the account(s): https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
How to remove a connect standard account from UI?
What's the 'UI' in this context? Dashboard?
Yes Dashboard
This is the account in question
acct_1LZSc5QfAcfFDA1t
by mistake the email here is the same as the platform account
Couple option:
- Login as the connected account and revoke access from the platform here: https://dashboard.stripe.com/settings/apps
- https://stripe.com/docs/connect/oauth-standard-accounts#revoked-access
Thank you