Status

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

Status

POST https://smsapi-sur2.onrender.com/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"
        }
    ]
}

Last updated