KashierDevelopersKashier Developers

List payout schedulers

curl -X GET "https://test-api.kashier.io/v2/transfers/schedulers"
{  "message": "success",  "data": {    "schedulers": [      {        "merchantTransferId": "transfer12349",        "recipientName": "Ahmed Mohamed",        "recipientNumber": "1012345678",        "recipientBank": "CIB",        "amount": 100,        "method": "bank",        "status": "ACTIVE",        "createdAt": "2026-06-18 10:30:00+00:00"      }    ]  },  "pagination": {    "total": 5,    "limit": 20,    "page": 1,    "pages": 1  }}

Lists your recurring payout schedulers, with pagination. A scheduler is a saved transfer template that Kashier re-runs on the frequency you set, so you can pay a recurring salary or a monthly supplier invoice without calling Create transfer every cycle.

Authorization

secretKey
Authorization<token>

Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).

In: header

Query Parameters

limit?integer

Number of records per page.

page?integer

Page number.

Response Body

application/json

application/json

application/json

application/json

application/json

GET
/v2/transfers/schedulers