Payouts
Get Payouts
GET
https://backendapi.sayswitchgroup.com/api/v1/payoutThe Get Payouts endpoint retrieves a history of all payout transactions processed on the platform. This includes detailed information such as the amount paid, status, account details, sender, and other transaction metadata. It’s commonly used for auditing, tracking, and displaying payout records to admins or users.
Sample cURL Response
JSON
{
"success": true,
"message": "Payout retrieved",
"data": [
{
"id": 644,
"reference": "186f575026447_subaccount",
"sessionid": "000017250405023102736775422250",
"currency": "NGN",
"amount": "15.18",
"fee": "0",
"bank_code": "100004",
"bank_name": "PAYCOM",
"account_number": "8080976685",
"account_name": "John Doe",
"countryCode": "NG",
"paymentMode": "bank",
"narration": "Split Payment on SSW_17437701414070124",
"sender": "SAYSWITCH",
"domain": "live",
"status": "success",
"created_at": "2025-04-05T01:31:03.000000Z",
"updated_at": "2025-04-05T01:31:05.000000Z"
}
// more records...
]
}