#Bo0013246
1 messages · Page 1 of 1 (latest)
If your code needs them processed in order, you'll need to build in a queue or some system on your end to process them in order
Because we don't guarantee order: https://stripe.com/docs/webhooks/best-practices#event-ordering
Do you have any examples on how this queue is designed?
No you'd need to build it yourself
But you could rely on events' created date: https://stripe.com/docs/api/events/object#event_object-created
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Then process them in order after storing them on your end
I see, thank you