Get Message
Authentication
Send this title with every request.
json
{
"Authorization": "Bearer ${token}"
}🔒 Get Message
To retrieve the details of a message by its message ID, you must follow the steps below.
POST
/api/company/message
Body
json
{
"message_id": "wamid...."
}Parameter Description
| Name | Description |
|---|---|
| message_id | The ID of the message to retrieve |
Response
json
{
"trace_id": "DsiLrL71HddrdC_QTcYC2ua_UwGGXB",
"ext_id": "wamid....",
"type": "TEXT",
"content": {
"text": "test"
},
"created_at": "2026-08-06T09:36:42.892Z"
}