#dan-burke

1 messages ยท Page 1 of 1 (latest)

humble lintelBOT
lilac peak
#

There are separate events for asynchronous payment methods like ACH. Let me find them for you, just a sec

#

Err, actually. Are you using Checkout?

sage merlin
#

was planning on confirming a PaymentIntent via the API to trigger the charge

#

either that or using a Payment Element with the PaymentIntent's client secret

lilac peak
#

Ah, okay. In that case you're already on the right track. The payment_intent.succeeded event will only fire when funds are guaranteed to reconcile to your Stripe account balance.

The longer answer is that the Payment Intent that's created for the payment will have a status of processing while we wait for the funds to reconcile. Once they're reconciled, we send them to your balance and the payment_intent.succeeded event fires.

https://stripe.com/docs/payments/payment-methods#payment-notification

Learn more about the API that powers a range of global payment methods.

sage merlin
#

thank you! is there a webhook that lets me know that a payment intent has started processing?

lilac peak
sage merlin
#

oh great! i guess i was looking at an abbreviated list in the Stripe docs. Thanks so much, all good now! ๐Ÿ™‚

lilac peak
#

Sure thing!