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": "572b13dd-a774-4547-95e2-fbea1df5bd69",
"event": "order.status_changed",
"created": "2026-07-27T19:28:12.509Z",
"data": {
"id": "cbflg2dvzobu0000000000000",
"number": "TY-MDFQ5YM",
"from": "pending",
"to": "processing"
}
}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.