Events/Payments
payout.settled

Payout settled

Paystack confirmed the bank credited the merchant.

When this fires

Paystack confirmed the destination bank credited the merchant — this is the 'cash in account' event.

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": "002c5140-fc55-4eb2-b478-c049e759d813",
  "event": "payout.settled",
  "created": "2026-06-12T18:11:59.192Z",
  "data": {
    "id": "ce5398yqsuh00000000000000",
    "amountKobo": 43571760,
    "currency": "NGN",
    "bankName": "Access Bank",
    "accountLast4": "9591",
    "settledAt": "2026-06-12T18:11:59.192Z",
    "paystackTransferCode": "TRF_fosjf81esy"
  }
}

Use cases

  • Auto-mark the matching ledger entry as cleared in your books.
  • Trigger a confirmation email to the merchant's finance contact.
  • Update working-capital dashboards with the new available balance.

Subscribe in the dashboard

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