SMS and MMS
Retrieve a message
Returns the SMS or MMS message identified by id, including its delivery status and content.
get/v3/messages/{id}
Path parameters
idstring required
Example:3a525ca2-6909-4c72-9399-905adf7f3a74
The unique ID of the message.
Response
Returns the message.
Example response
{
"message_id": "3a525ca2-6909-4c72-9399-905adf7f3a74",
"message_type": "sms",
"from": "15072429497",
"to": "16419252149",
"direction": "outbound",
"mcc": "310",
"mnc": "024",
"message_body": {
"text": "Hello, this is a test message",
"media": null
},
"segments": 1,
"status": "delivered",
"charge": "0.01",
"submitted_at": "2022-04-14T13:51:16.096Z",
"sent_at": "2022-04-14T13:51:16.096Z",
"delivered_at": "2022-04-14T13:51:16.096Z",
"error_message": null,
"carrier_fees": "0.0",
"tag": "Fall sale"
}