Events/Payments
discount.redeemedBuyer-initiated

Discount code redeemed

A buyer used a discount code at checkout.

When this fires

A buyer used a discount code at checkout — the code, the order it applied to, and the kobo deducted.

High frequency
This event is buyer-initiated, which means it can fire at checkout-traffic volume during busy periods. Make sure your handler responds in under ten seconds; queue any heavy work.

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": "249c7165-e84c-4d68-8f20-dd014169cac7",
  "event": "discount.redeemed",
  "created": "2026-06-12T18:11:59.155Z",
  "data": {
    "orderId": "cz26cwoozgs00000000000000",
    "orderNumber": "TY-8U2WJ76",
    "code": "OWAMBE15",
    "deductionKobo": 444644
  }
}

Use cases

  • Track per-campaign ROI in your marketing analytics.
  • Decrement remaining uses on a limited-redemption campaign you manage externally.
  • Notify a creator when their referral code drives a sale.

Subscribe in the dashboard

To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( discount.*) work too — see the webhooks guide for the matching rules.