#TheUchi007 - pending vs available

1 messages · Page 1 of 1 (latest)

lofty yarrow
#

That depends on whether Stripe has actually received the funds for the payment. Funds go in to your pending balance when they are approved and in to available once the money is actually sent

sage iron
#

Hmmm, when payment_intent.succeed kicks in, does that mean that the payment was successfully added? Or that is what happens only when it is passed to pending?

#

In other words, does it kick in on either case(available or pending), or just when it is set pending?

#

What I want to avoid, is adding a balance that is failed

lofty yarrow
#

The balance should be applied to pending along with the payment_intent.suceeded event being triggered. The funds would move in to available later at which point you will get a balance.available event

#

Is that helpful or am I not quite answering your question?

sage iron
#

That is perfect, that is exactly what I wanted

#

That way, I can setup either a notification or email to let a user know when a balance has moved to available

#

or at least for the DB

#

thank you!