Get payout scheduler details
curl -X GET "https://test-api.kashier.io/v2/transfers/schedulers/string"{ "message": "success", "data": { "merchantTransferId": "transfer12349", "recipientName": "Ahmed Mohamed", "recipientNumber": "1012345678", "recipientBank": "CIB", "amount": 100, "method": "bank", "status": "ACTIVE", "createdAt": "2026-06-18 10:30:00+00:00", "recurringFrequency": "MONTHLY", "nextRun": "2026-07-18 10:30:00+00:00" }}Retrieves one recurring payout scheduler, including the transfer template it repeats, its recurring frequency, and the date it next runs.
Authorization
secretKey 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
Path Parameters
The scheduler id returned when the scheduler was created.
Response Body
application/json
application/json
application/json
application/json
application/json
List payout schedulers GET
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 suppl…
Create payout scheduler POST
Creates a recurring payout scheduler from a single transfer template. Kashier repeats the transfer on the recurringFrequency you set, starting on startDate, until you deactivate the scheduler or it…