Sign Up and send free SMS messages.

Get Message Status API Deprecated

Get Message Delivery Status

This api can be used to get the SMS delivery status of your message. Pass the parameter value {id} which identify the unique message id.

 /v2/messages/status?id={id}

The following status values will be return when the status has reached to a final destination.

Status Description
Pending The message is still pending for the delivery
Sent The message has been sent to telecom
Delivered The message has been delivered to mobile phone
Undelivered The message could not be delivered to mobile phone
Unknown The message status could not be identify

Success Response Body


{
    "status": true,
    "data": {
                   "id":"12345",
                    "message_to": "+959xxxxxxxxx",
                    "status": "Delivered",
                    "date": 1535801846
    }
}