#tonyball333-webhook-order
1 messages · Page 1 of 1 (latest)
Hi there 👋 the events trigger really quickly in those flows so sometimes they appear to be in different orders in some places. For example, I just triggered the same event and in my dashboard everything is shown in the expected order, but in my terminal where stripe listen was running I see the succeeded event before the created event.
When working with webhook events you should avoid relying on them showing up in a specific order anyway. Due to the nature of the internet we can't guarantee that the events will reach you in the order that they're generated.
Thanks Toby. Isn't that a problem in certain circumstances though? For example, What if Iwant to handle customer creations and deletions. If I get a delete message before the creation then I wouldn't be able to action that delete before I had actioned the creation
Could you elaborate?
You are right though Toby, I must be careful not to be dependant on that timing. I will alter my design to be accommodate that