SmarthiveSMS API
  • Introduction
  • SMS
    • Send Single SMS
    • Send Multiple SMS
    • Status
    • Balance
    • Send SMS Sample Code
    • Callback
    • SMS DLR Error Codes
  • WhatsApp
    • Sending OTP
Powered by GitBook
On this page
  1. SMS

Status

PreviousSend Multiple SMSNextBalance

Last updated 1 year ago

// Body sample
{ 
     "msg_id": [ 
              "1fqwe-qwe", 
              "nwepq22q"
                     ] 
}

Status

POST /api/sms/status

This endpoint allows you to check the delivery status of the messages sent.

Headers

Name
Type
Description

x-api-key*

String

Your API Key

Request Body

Name
Type
Description

msg_id*

Array

Array of message ids

{
    "status": "ok",
    "description": "The request has suceeded",
    "data": [
        {
            "msg_id": "1fqwe-qwe",
            "status": "DELIVERD"
        },
        {
            "msg_id": "nwepq22q",
            "status": "DELIVERD"
        }
    ]
}
https://smsapi-sur2.onrender.com