v1
latestOpenAPI 3.0.02026-07-26254134307.1 KBMessages
Get message seen status
Get the seen receipts for the given message. If no seen-by information is available, there will be a single entry for the first time the message was seen by any recipient. If seen-by information is available, there will be an entry for each recipient who has seen the message.
Required scope: messages:read
get/messages/{message_id}/seen
Path parameters
message_idstring required
The message ID
Response
Array of seen receipts
Example response
{
"_pagination": {
"next": "https://yourCompany.api.frontapp.com/messages/msg_1p4lvjym/seen?page_token=jk7893fgeet644abnn39"
},
"_links": {
"self": "https://yourCompany.api.frontapp.com/messages/msg_1p4lvjym/seen"
},
"_results": [
{
"_links": {
"self": "https://yourCompany.api.frontapp.com/messages/msg_1p4lvjym/seen",
"related": {
"message": "https://yourCompany.api.frontapp.com/messages/msg_1p4lvjym"
}
},
"seen_by": {
"handle": "dwight@limitlesspaper.com",
"source": "email"
}
}
]
}