#Bo0013246
1 messages · Page 1 of 1 (latest)
hello! i'm afraid we don't have any such diagram
charge_captured will happen after charge_succeeded - that's assuming you're using authorize and capture : https://stripe.com/docs/payments/place-a-hold-on-a-payment-method. If you're not using auth and capture, you won't see a charge_captured event
I see
what is the difference between payment_intent capture and charge.capture
also payment_intent.succeed vs charge.succeed?
Hi @zinc glen I'm taking over this thread
ty
payment_intent.succeed vs charge.succeed events are similar as they both represent successful payments. The difference is the data type that you get from the event object
can you elaborate a bit more?
You get a PaymentIntent object from payment_intent.succeed, and a Charge object from charge.succeeded.
so if I need to have a webhook to confirm the success of a payment, should I listen to which one?
If you are using PaymentIntents API, you just need to listen to payment_intent.succeeded
ok, thanks
One more question, can you please confirm if this is correct?
the sequence?
The webhook events may not arrive in sequence.
The flowchart looks good to me