🚀 Card Payment is live! Learn more
curl --request POST \
--url https://nini.monieswitch.com/payout/single/recurrent \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pin": "1235",
"amount": 1000,
"name": "Testing",
"interval": "Daily",
"email": "[email protected]",
"bankCode": "000023",
"accountNumber": "2394934324",
"narration": "Testing transaction",
"startDate": "2024-07-11T12:40:00.851Z",
"endDate": "2024-07-12T17:00:00.851Z"
}'
{
"status": true,
"message": "Recurrent transaction has been successfully scheduled",
"data": {
"id": "7b7f2edd-d96a-4583-b938-3ebd49149f4d",
"charges": 20,
"bankName": "PROVIDUS BANK",
"status": "ACTIVE",
"amount": 200,
"bankCode": "000023",
"startDate": "2024-07-02T13:48:15.851Z",
"endDate": "2024-07-03T08:45:15.851Z",
"interval": "Daily",
"narration": "Testing transaction",
"accountNumber": "2394934324",
"accountName": "SIMI MICHELLE",
"createdAt": "2024-07-02T13:45:43.685Z"
}
}
curl --request POST \
--url https://nini.monieswitch.com/payout/single/recurrent \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pin": "1235",
"amount": 1000,
"name": "Testing",
"interval": "Daily",
"email": "[email protected]",
"bankCode": "000023",
"accountNumber": "2394934324",
"narration": "Testing transaction",
"startDate": "2024-07-11T12:40:00.851Z",
"endDate": "2024-07-12T17:00:00.851Z"
}'
{
"status": true,
"message": "Recurrent transaction has been successfully scheduled",
"data": {
"id": "7b7f2edd-d96a-4583-b938-3ebd49149f4d",
"charges": 20,
"bankName": "PROVIDUS BANK",
"status": "ACTIVE",
"amount": 200,
"bankCode": "000023",
"startDate": "2024-07-02T13:48:15.851Z",
"endDate": "2024-07-03T08:45:15.851Z",
"interval": "Daily",
"narration": "Testing transaction",
"accountNumber": "2394934324",
"accountName": "SIMI MICHELLE",
"createdAt": "2024-07-02T13:45:43.685Z"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Single Recurrent Payment - Successful
The response is of type object
.