Get Message Status

This endpoint allows you get the delivery status of messages

๐Ÿ“˜

NOTE

You can subscribe to the webhook service here

Request

{{baseUrl}}/api/v1/messaging/sms/get_status

Query Parameters

POST ParametersTypeDescription
message_idstringreference ID of the message

Response Sample

{
    "entity": {
        "status": "DELIVRD"
    }
}
curl -L -X GET '{{baseUrl}}/api/v1/messaging/sms/get_status?message_id={{message_id}}' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'AppId: APP_ID'