Events/Orders
order.createdBuyer-initiated

Order created

A buyer completed checkout and Paystack confirmed payment.

When this fires

A buyer finished checkout and Paystack confirmed the payment. This is the canonical 'new order' signal.

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": "307134d8-d4e8-404b-84cb-14d55da6e10c",
  "event": "order.created",
  "created": "2026-06-12T18:11:58.664Z",
  "data": {
    "id": "com8aaud7zf00000000000000",
    "number": "TY-8U2IXBJ",
    "totalKobo": 3820008,
    "itemCount": 4,
    "customer": {
      "name": "Ifeanyi Adeyemi",
      "email": "ifeanyi.adeyemi28@outlook.com",
      "phone": "+2349074095980"
    },
    "shippingAddress": {
      "line": "Admiralty Way, Lekki",
      "city": "Lagos",
      "state": "Lagos",
      "country": "NG"
    },
    "currency": "NGN"
  }
}

Use cases

  • Print or send a packing slip to the merchant's fulfilment desk.
  • Push the order into your ERP / accounting system in real time.
  • Notify a Slack channel so the team knows a high-value order just landed.

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.