POST
/
payout
/
single
/
schedule
Schedule Single Payout
curl --request POST \
  --url https://nini.monieswitch.com/payout/single/schedule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 350,
  "pin": "1234",
  "bankCode": "000023",
  "email": "[email protected]",
  "accountNumber": "2394934324",
  "scheduleDate": "2024-07-10T12:50:15.851Z",
  "narration": "Testing schedule transaction"
}'
{
  "status": true,
  "message": "Transaction has been successfully scheduled",
  "data": {
    "charges": 20,
    "status": "NEW",
    "id": "2c694f49-115e-4d3f-9513-3f71eeba563b",
    "amount": 300,
    "bankCode": "000023",
    "narration": "Testing schedule transaction",
    "scheduleDate": "2024-07-02T07:30:15.851Z",
    "accountNumber": "2394934324",
    "createdAt": "2024-07-02T07:28:23.510Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json

Schedule Single Payout - Successful

The response is of type object.