GET
/
payout
/
single
/
schedule
List Schedule Payouts
curl --request GET \
  --url https://nini.monieswitch.com/payout/single/schedule \
  --header 'Authorization: <authorization>'
{
  "data": {
    "page": 1,
    "perpage": 20,
    "records": [
      {
        "accountName": "Obagunwa Emmanuel",
        "accountNumber": "2394934324",
        "amount": 500,
        "bankCode": "000023",
        "bankName": "PROVIDUS BANK",
        "charges": 10,
        "createdAt": "2023-12-05T17:12:18.219Z",
        "email": "[email protected]",
        "id": "4a0afd65-b4dd-40d5-b3d0-cac67e8fd80b",
        "metadata": null,
        "narration": "Testing transaction",
        "scheduleDate": "2023-12-10T13:50:00.000Z",
        "status": "NEW",
        "transactionId": null
      }
    ],
    "totalPages": 1,
    "totalRecords": 1
  },
  "status": true
}

Headers

Authorization
string
required

Set value to 'Bearer {{MERCHANT_SECRET_KEY}}'

Query Parameters

page
integer

The page number to return. Defaults to 1.

page_size
integer

The limit of items to return per page. Defaults to 10.

status
string

NEW, FAILED, DISPATCHED, CANCELLED

Example:

"NEW"

Response

200 - application/json

List Schedule Payouts

The response is of type object.