MT Messages
Returns a list of mobile terminated messages for the device This endpoint returns paged results of up to 1,000 records per response, using the X-CONTINUATIONTOKEN header. When the response includes this token, it indicates that additional records are available. To retrieve the next set of results, include the X-CONTINUATIONTOKEN token from the previous response header in the header of your subsequent request. This process can be repeated until no further continuation token is provided, indicating that you have reached the end of the dataset.
Tenant Var Code
Device Id
From Date
To Date
OK
A unique numeric identifier for the message (read only)
A Base64 encoded byte array representing the binary attachment send to the device
A string representing the message text
A string representing the message type. Currently supported message types are: FreeText, PositionRequest, ChangeSettings, CheckInRequest
The email address of the sender
A date and time that the platform sent the message
GET /V2/{tenantVarCode}/devices/{deviceId}/mtmessages HTTP/1.1
Accept: */*
OK
[
{
"MessageId": "text",
"Attachment": "Ynl0ZXM=",
"Message": "text",
"MessageType": "text",
"SenderAddress": "text",
"TimeSent": "2026-01-01T00:00:00.000Z",
"Properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]Tenant Var Code
Device Id
A unique numeric identifier for the message (read only)
A Base64 encoded byte array representing the binary attachment send to the device
A string representing the message text
A string representing the message type. Currently supported message types are: FreeText, PositionRequest, ChangeSettings, CheckInRequest
The email address of the sender
A date and time that the platform sent the message
OK
No content
POST /V2/{tenantVarCode}/devices/{deviceId}/mtmessages HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 191
{
"MessageId": "text",
"Attachment": "Ynl0ZXM=",
"Message": "text",
"MessageType": "text",
"SenderAddress": "text",
"TimeSent": "2026-01-01T00:00:00.000Z",
"Properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}OK
No content
OK
A unique numeric identifier for the message (read only)
A Base64 encoded byte array representing the binary attachment send to the device
A string representing the message text
A string representing the message type. Currently supported message types are: FreeText, PositionRequest, ChangeSettings, CheckInRequest
The email address of the sender
A date and time that the platform sent the message
GET /V2/{tenantVarCode}/devices/{deviceId}/mtmessages/{messageId} HTTP/1.1
Accept: */*
OK
{
"MessageId": "text",
"Attachment": "Ynl0ZXM=",
"Message": "text",
"MessageType": "text",
"SenderAddress": "text",
"TimeSent": "2026-01-01T00:00:00.000Z",
"Properties": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}Tenant Var Code
Device Id
Id of message to delete
OK
No content
DELETE /V2/{tenantVarCode}/devices/{deviceId}/mtmessages/{messageId} HTTP/1.1
Accept: */*
OK
No content
Last updated

