Check Message Status
The status of messages can be grabbed through this endpoint GET /api/v2/message/{{msgid}}/status
.
There are 4 types of status that you can get from this endpoint submitted, delivered, read, failed/rejected.
{
"msgid": "5caexxxx-23xx-f1xx-adf12f36xxxx"
"phone_number": "+6281234xxxxx"
"history_status":[
{
"timestamp": "2024-03-01T03:22:58.073Z"
"status": "submitted"
},
{
"timestamp": "2024-04-01T03:22:58.073Z"
"status": "rejected"
}
],
"additional_info": {
"code": 1340,
"reason": "Send Outside Allowed Window"
}
}
Last updated