Introduction

This page contains guide to send bulksms on Inlomax.

Send Bulksms

Send a post request to the below endpoint, You can use the PHP integration code below....




curl --request POST 'https://inlomax.com/api/bulksms' \
  --header 'Authorization: Token YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data-raw '{
    "sender" : "JohnDoe",
    "message" : "Welcome to Inlomax",
    "number" : "0903837261 0907463674" 
    "smsType" : 1 //1=normal sms, 2=flash sms
  }'

Sample Response

Send a post request to the below endpoint.


{
    "status": "success",
    "message": "Bulk SMS sent successfully",
    "data": {
        "type": "bulksms",
        "totalCorrectNumber": "09090909090 0907463674",
        "totalWrongNumber": "0",
        "status": "success"
    }
}