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 Parameters | Type | Description |
---|---|---|
message_id | string | reference 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'
Updated almost 2 years ago