order.refundedOrder 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": "29e83822-2c59-43ed-8c8c-c75bfbf19184",
"event": "order.refunded",
"created": "2026-06-12T18:11:58.704Z",
"data": {
"id": "ca2ahb1s71m70000000000000",
"number": "TY-8U2K0GS",
"refundId": "cskwsjiaj4po0000000000000",
"amountKobo": 3004208,
"totalRefundedKobo": 2253841,
"orderTotalKobo": 6161408,
"refundStatus": "partial",
"reason": "damaged",
"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.