Skip to main content

Schedule recurring SMS

POST 

https://core-prod.malipopay.co.tz/api/v1/sms/schedule/repeat

Schedule recurring SMS messages (daily, weekly, monthly) with repeat options.

Request

Bodyrequired

    senderstringrequired
    Example: MALIPOPAY
    phoneNumberstring[]required
    Example: ["255742200105"]
    messagestringrequired
    Example: Scheduled SMS!
    datedate-timerequired

    ISO 8601 delivery date

    Example: 2026-03-20T10:00:00.000Z

Responses

Recurring SMS scheduled successfully

Schema
    successboolean
    Example: true
    codeinteger
    Example: 2000
    messagestring
    Example: SMS sent successfully
    dataobject

    SMS result data

Authorization: apiToken

name: apiTokentype: apiKeyin: headerdescription: Project API key. Get yours from the Malipopay dashboard under Settings → API Keys.
curl -L 'https://core-prod.malipopay.co.tz/api/v1/sms/schedule/repeat' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'apiToken: <apiToken>' \
-d '{
"sender": "MALIPOPAY",
"phoneNumber": [
"255742200105"
],
"message": "Scheduled SMS!",
"date": "2026-03-20T10:00:00.000Z"
}'
Request
Base URL
https://core-prod.malipopay.co.tz
Auth
Body required
{
  "sender": "MALIPOPAY",
  "phoneNumber": [
    "255742200105"
  ],
  "message": "Scheduled SMS!",
  "date": "2026-03-20T10:00:00.000Z"
}
Response

Click the Send API Request button above and see the response here!