Send SMS (Multiple)
Send SMS Request (Multiple)
POST
https://app.sleengshort.com/api/sms/send
This endpoint allows you to send SMS to multiple users
Note the msg_ids in the response body can be used to track the delivery status on a request when notifications are sent to the callback URL.
Also, you must check which API-Key you're using while sending sms. A coop API-Key must be used when sending sms with a coop sender_id while an open API-Key must be used when sending sms with an open bind sender_id.
Headers
sender id*
String
SMS sender ID
recipients*
String
MSISDN of recipients in international format
msg*
String
SMS body ( < 905 characters)
type
String
Message format: 0: Flash SMS, 1: SMS delivers to inbox(default), 2: Unicode SMS – Chinese, Arabic etc
If you intend to send the same message to multiple recipients in a single request, separate each recipient with a comma “,” as seen in the sample JSON request body below.
{
"sender_id" : "TEST SENDER",
"recipients" : "070********,071********,072******** ",
"msg" : "Hello world!",
"type": 1
}
Last updated