Retrieve a message
Retrieves a single message by its ID. The message text is redacted based on the caller-specific channel-visibility resolution, and the response includes a read-only accessLevel.
Required scope: messages:read
Rate limit category: Read
get/v1/messages/{id}
Path parameters
idstring required
Unique identifier of the message to retrieve.
Headers
Lightfield-Version'2026-03-01' required
Required API version header. Requests may error without it.
Response
OK
Example response
{
"id": "msg_cm0abc456def789",
"createdAt": "2026-05-01T09:00:00.000Z",
"updatedAt": "2026-05-01T09:00:00.000Z",
"httpLink": null,
"fields": {
"$text": {
"valueType": "TEXT",
"value": "Thanks — pushed the fix, should be live shortly."
},
"$sentAt": {
"valueType": "DATETIME",
"value": "2026-05-01T08:59:30.000Z"
},
"$provider": {
"valueType": "TEXT",
"value": "SLACK"
},
"$providerThreadId": {
"valueType": "TEXT",
"value": "1714553970.123456"
},
"$editedAt": {
"valueType": "DATETIME",
"value": null
}
},
"relationships": {
"$channel": {
"cardinality": "has_one",
"objectType": "channel",
"values": [
"chn_cm2def456ghi789"
]
}
},
"objectType": "message",
"accessLevel": "FULL"
}