Events/Orders
order.status_changed

Order 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": "93f5e7f4-c293-4b4d-b3f8-31fe97eb66ee",
  "event": "order.status_changed",
  "created": "2026-07-29T17:36:12.307Z",
  "data": {
    "id": "cdi6mfnqxw560000000000000",
    "number": "TY-D93PVP3",
    "from": "processing",
    "to": "delivered"
  }
}

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.