order.createdBuyer-initiatedOrder 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": "dd743d59-166f-4854-926c-88ca0fb90998",
"event": "order.created",
"created": "2026-09-11T01:03:46.187Z",
"data": {
"id": "c0rkbjfqbzqvn000000000000",
"number": "TY-96AYZV8",
"totalKobo": 5481018,
"itemCount": 3,
"customer": {
"name": "Emeka Ajayi",
"email": "emeka.ajayi36@gmail.com",
"phone": "+2347030542840"
},
"shippingAddress": {
"line": "Aminu Kano Crescent, Wuse 2",
"city": "Abuja",
"state": "FCT",
"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.