#dc_user_88694
1 messages · Page 1 of 1 (latest)
Sure, Retrieve Account API
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
but this api does not return the status of the stripe account, or maybe I'm wrong
yes
Um not have an exposed field for that, but you can look at requirements and charge_enabled. If enabled = false and there is some requirements, then it's restricted or rejected
these parameters can be true, but the account itself can be in pending status
that is is payout_enabled is false, but charge_enabled is true
but the account on the Stripe dashboard is still pending
what parameters should be checked to be 100% sure that the account is active?
Is there future_requirements?
So yes I think all requirements, future_requirements should be empty, and charge_enabled and payout_enabled should be true
for an account to be active
OK thank you. And which parameter means that the account was rejected?
hi! I'm taking over this thread.
you can check that in the disabled_reason, as mentioned on this page: https://stripe.com/docs/connect/handling-api-verification
Thank you. If I understand correctly, in order to make sure that the stripe account is active, I need to check charge_enabled and payout_enabled (should be true) and requirements and future_requirements should be empty. Right?
that's correct! I would just say that future_requirements is, as it's name implies, a future requirement. so you don't have to take care of it right now.
And one more question, will payments go through to a pending Stripe account? How to find out what is the reason for the pending status?
Perhaps you can tell about automated payments (subscriptions), how to check the status of these payments? Does it need to use webhooks?
And one more question, will payments go through to a pending Stripe account?
no idea sorry. you can try asking Stripe support: https://support.stripe.com/contact
how to check the status of these payments?
can you clarify what you mean by this exactly?