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": "85f9bcd4-15c8-4da3-824a-f77d853f0cd0",
  "event": "payment.captured",
  "created": "2026-07-27T19:28:05.468Z",
  "data": {
    "orderId": "cv5npnhgch8p0000000000000",
    "orderNumber": "TY-MDAAK1Y",
    "amountKobo": 3315394,
    "reference": "PSK_TUJKVCI67R",
    "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.