order.status_changedOrder status changed
The merchant or ops moved an order between states (processing → in transit → delivered, etc).
When this fires
An order moved between states — processing → in_transit → delivered, or cancelled at any point.
Sample payload
This is the exact envelope shape we POST to your endpoint — outer wrapper plus the per-event data payload. Field values are randomised on each render so you see the general shape, not a fixed example.
json
{
"id": "6c76f049-e772-457f-a0bd-5244701612bb",
"event": "order.status_changed",
"created": "2026-06-12T18:11:58.681Z",
"data": {
"id": "c8616hzz2b3l0000000000000",
"number": "TY-8U2JD68",
"from": "pending",
"to": "in_transit"
}
}Use cases
- Trigger a transactional SMS to the buyer ('Your order is on the way').
- Update an external CRM with the latest fulfilment milestone.
- Kick off the delivery-confirmation flow in your customer-service tool.
Subscribe in the dashboard
To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( order.*) work too — see the webhooks guide for the matching rules.