Events/Orders
order.cancelled

Order cancelled

An order was cancelled — by buyer, merchant, or system.

When this fires

An order was cancelled — by buyer, merchant ops, or the system (out-of-stock, fraud).

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": "f1cbf455-0014-4671-88d4-8cbf3dacf6fa",
  "event": "order.cancelled",
  "created": "2026-06-12T15:00:35.326Z",
  "data": {
    "id": "cikt0457wfrb0000000000000",
    "number": "TY-1ZXXA5S",
    "totalKobo": 4226167,
    "reason": "out_of_stock"
  }
}

Use cases

  • Reverse a pending inventory hold in your warehouse system.
  • Tell your accounting system to back out the booked revenue.
  • Drop the order from any pick-list a fulfilment partner has staged.

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.