Events/Orders
order.refunded

Order refunded

A refund was issued — partial or full. Payload includes the deduction amount.

When this fires

A refund (partial or full) was issued against an order — payload includes the deduction amount and a running total.

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": "69f2fde9-1960-41ba-a443-795fb1d3ce46",
  "event": "order.refunded",
  "created": "2026-07-29T20:11:58.836Z",
  "data": {
    "id": "cg0aao1wavk50000000000000",
    "number": "TY-ITFJO1G",
    "refundId": "crws94eerkuq0000000000000",
    "amountKobo": 193213,
    "totalRefundedKobo": 398409,
    "orderTotalKobo": 2925100,
    "refundStatus": "partial",
    "reason": "customer_request",
    "reasonNote": null,
    "isManual": false
  }
}

Use cases

  • Update your books with the refund amount and reason.
  • If the refund is full, restock the items in your inventory ERP.
  • Tag the customer record for a follow-up call in your CRM.

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.