Events/Payments
payment.capturedBuyer-initiated

Payment captured

Paystack confirmed funds. Same time as order.created.

When this fires

Paystack confirmed funds. Always fires at the same moment as order.created.

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": "25e6536b-27c4-4ce4-be48-04a9412fecd7",
  "event": "payment.captured",
  "created": "2026-09-11T01:03:46.444Z",
  "data": {
    "orderId": "cg9f76u5o2i70000000000000",
    "orderNumber": "TY-96B64DK",
    "amountKobo": 5960354,
    "reference": "PSK_93XG7JPPJ5",
    "channel": "ussd"
  }
}

Use cases

  • Reconcile against your Paystack ledger at end-of-day.
  • Increment a real-time revenue dashboard.
  • Settle commissions or splits to creators / affiliates.

Subscribe in the dashboard

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