Description
This endpoint allows you to retrieve the delivery status and details of a message that was sent through any channel (WhatsApp, SMS, Email, RCS) by providing the request_id that was returned when the message was sent.
Your API key for authentication.
Your workspace ID for authentication.
Query Parameters
The unique request ID that was returned when the message was sent. This ID is used to track the delivery status of the message.
Response
Indicates whether the API call was successful.
Success or error message from the API.
The delivery report data containing the following fields:
The communication channel used (e.g., “whatsapp”, “sms”, “email”, “rcs”).
The unique identifier for the message.
The recipient’s contact information (phone number or email address).
The request ID that was used to query this report.
The current delivery status of the message.
Timestamp indicating when the status was last updated.
Additional remarks or notes about the delivery status.
The workspace ID associated with this message.
200-Success
400-Bad Request
401-Unauthorized
404-Not Found
500-Internal Server Error
{
"success" : true ,
"message" : "Delivery report retrieved successfully" ,
"data" : {
"channel" : "whatsapp" ,
"message_id" : "wamid.XXX" ,
"recipient" : "919876543210" ,
"request_id" : "66e120d1b9eht5059e5e01d" ,
"status" : "delivered" ,
"statusAt" : "2024-01-15T10:30:00Z" ,
"remark" : "Message delivered successfully" ,
"workspace_id" : "workspace_123"
}
}