Hello devs,
I want to process all order events in my app - both new orders and any updates to existing orders (status changes, fulfillments, refunds, etc.).
I’m wondering if I can just subscribe to the orders/updated
webhook instead of both orders/created
and orders/updated
.
When I subscribe only to orders/updated
, I appear to be receiving new orders as they are created as well. Does the orders/updated
webhook fire when a new order is initially created, or should I still subscribe to both webhooks to ensure I don’t miss any order events?
Any insights on whether orders/updated
alone provides complete order lifecycle coverage would be helpful!
Thanks