#Lukas V
1 messages · Page 1 of 1 (latest)
Hi there
You want account.updated
thanks, what is the property of the current status? I don't see status here - 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.
There is no exact status property on the account object. What you want to pay attention to is the requirements hash and you can use payouts_enabled and charges_enabled at a high level to know if the account can process currently.
Got it, and either of them could work to deem account as "active"?
Yep if requirements is empty (or at least there is nothing in past_due ) then you know it is active. Likewise, if charges_enabled and payouts_enabled are true then you know it is active