Send Single SMS
// Body sample
{
"sender": "Smarthive",
"recipients": "23490########",
"msg": "Hello World",
"type": 1,
"route": "MKT"
"ext_ref": "67uf_cu68"
}
Send
POST
https://smsapi-sur2.onrender.com/api/sms/send
This endpoint allows you to send SMS Message
Headers
Name
Type
Description
x-api-key*
String
Your API Key
Request Body
Name
Type
Description
sender*
String
Sender ID
recipients*
String
MSISDN of recipient in international format
msg*
String
SMS body ( < 905 characters)
type*
int
0: Flash SMS, 1: SMS delivers to inbox(default)
route*
String
MKT for Promotional SMS, TRX for Transactional SMS, INTL for International SMS
ext_ref
String
Unique Message reference
{
"status": "ok",
"description": "The request has succeeded",
"data": {
"msg_id": "DXww578MO",
"recipient": "2349042839232",
"status": "Submitted"
}
}
Last updated