#dpelkey98

1 messages · Page 1 of 1 (latest)

fathom kilnBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

crimson sigil
#

Hello! The balance.available Event fires whenever the Stripe account balance increases. Payouts being enabled or disabled shouldn't impact it either way.

naive delta
#

hmm.. Is there an event for specifically a balance that transitions into available to pay out?

crimson sigil
#

That's what balance.available is for.

naive delta
#

Awesome. So if I wanted to payout funds based on payouts being enabled I would need to listen for account.updated? Is there a better event for this? Essentially just want a synchronous way to check for a payout balance when a user's connect account transitions from a restricted to non-restricted state.

crimson sigil
#

The best way to do that is to fetch the Account from the API and see what state it's in, then decide to proceed or not from there.

naive delta
#

So, in the case of identity verification: lets say a user's account gets restricted. They upload documents to Stripe. The ID verification would take a bit to complete? Meaning I would have to implement something to manually check the status after x-time?

crimson sigil
naive delta
#

10-4 thanks for the clarification