Skip to main content

Send flash SMS

POST 

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

Send a flash (class 0) SMS — appears directly on the recipient's screen without being saved. Useful for OTPs and urgent alerts.

Request

Bodyrequired

    senderstringrequired

    Sender ID

    Example: MALIPOPAY
    phoneNumberstringrequired

    Recipient phone number

    Example: 255742200105
    messagestringrequired

    Message content

    Example: Hello from MalipoPay!

Responses

Flash SMS queued 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/flash' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'apiToken: <apiToken>' \
-d '{
"sender": "MALIPOPAY",
"phoneNumber": "255742200105",
"message": "Hello from MalipoPay!"
}'
Request
Base URL
https://core-prod.malipopay.co.tz
Auth
Body required
{
  "sender": "MALIPOPAY",
  "phoneNumber": "255742200105",
  "message": "Hello from MalipoPay!"
}
Response

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