#itaied-webhook
1 messages · Page 1 of 1 (latest)
Hi there!
As mentioned in our doc for checkout.session.completed
Occurs when a Checkout Session has been successfully completed.
So yes the payment was successful.
where can I see the hierarchy / order of execution of the events?
I'm not sure wha you mean by hierarchy. But the order of events is not guaranteed by Stripe https://stripe.com/docs/webhooks/best-practices#event-ordering
Hi, thanks for the response.
I'm asking about the order of stripe sending the events, not as they arrive.
You said that checkout.session.completed is executed after payment_intent.success has been executed, but I believe there are many events that has been sent before that, where can I see exactly what are they?
The simplest way would be to do some tests on your end. You have two options:
- In test mode, create a Checkout Session, and enter payment details.
- Or use the Stripe CLI to run
stripe trigger checkout.session.completed
Then in both cases, check your dashboard "events" page to see all events
ok thank you