List payout requests
See all your payouts and payout requests.
For more information, see the documentation, and for sample calls, see the public Postman collection.
Path parameters
A unique merchant ID provided by Peach Payments in hexadecimal format.
A unique merchant ID provided by Peach Payments.
Query parameters
Return results from the inclusive start date (window less than three months). Please use ISO 8601 date format.
Return results from the inclusive end date (window less than three months). Please use ISO 8601 date format.
Filter results by payout reference or account holder name (case-insensitive partial match).
Filter results by one or more payout statuses by repeating the query parameter, for example ?status=failed&status=successful.
[ "failed", "successful" ]
Filter results by one or more bank names by repeating the query parameter, for example ?bankName=ABSA&bankName=NEDBANK.
[ "ABSA", "NEDBANK" ]
Filter results by one or more payout methods by repeating the query parameter, for example ?type=realtime-eft&type=realtime-eft.
[ "realtime-eft" ]
Order the results by date providing date_asc or date_desc.
Response
A list of all payout requests in the date range provided.
Example response
{
"requests": [
{
"payoutRequestId": "6e029f3f-21bf-425d-8f65-4eef2b5d8bb2",
"created": "2024-03-14T22:00:00.000Z",
"payouts": [
{
"bankName": "ABSA",
"accountNumber": "4047594620",
"branchCode": "632005",
"amount": 56712,
"currency": "ZAR",
"accountHolder": "Sibusiso Kumalo",
"reference": "Refund order 74152",
"payoutMethod": "realtime-eft",
"status": "successful",
"payoutId": "84920878-fc32-494f-8e30-6a2465c9a456",
"lastUpdated": "2024-03-14T22:00:00.000Z",
"created": "2024-03-14T22:00:00.000Z",
"resultCode": "2000.000.000",
"missingCreditQueryStatus": "queried"
},
{
"bankName": "NEDBANK",
"accountNumber": "1006393099",
"branchCode": "210002",
"amount": 56712,
"currency": "ZAR",
"accountHolder": "Duduzile Masha",
"reference": "Payment 27656",
"payoutMethod": "realtime-eft",
"status": "failed",
"payoutId": "355f5577-e174-4397-b8f6-ced4a7165217",
"lastUpdated": "2024-03-14T22:00:00.000Z",
"created": "2024-03-14T22:00:00.000Z",
"resultCode": "2001.002.108",
"missingCreditQueryStatus": "failed",
"error": {
"title": "Payout processing error",
"message": "The recipient's account cannot receive funds right now. Please ask the recipient to check with their bank.",
"code": "2001.002.108"
}
}
]
}
]
}