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": "76ff9a36-648a-4d31-90b4-62d49d8fb284",
"event": "order.status_changed",
"created": "2026-06-12T15:00:35.313Z",
"data": {
"id": "cc9hmf9s7y100000000000000",
"number": "TY-1ZXWX4R",
"from": "processing",
"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.