v1
latestOpenAPI 3.0.02026-08-04891301.4 MBRetrieve a thread's read status
Returns the read status of a thread for the specified user, including the ID of the last message they have read and the number of unread messages remaining.
For user-authenticated requests, the status is always returned for the authenticated user and the user parameter is ignored. For server-to-server (S2S) requests, the user parameter is required and must be a valid user ID.
Returns 404 if the thread does not exist or the caller does not have access to it.
Path parameters
Thread ID (thr_...). Must be accessible to the authenticated user or, for S2S requests, to the specified user.
Query parameters
User ID (usr_...) whose read status to retrieve. Required for S2S requests; ignored for user-authenticated requests, which always return the status for the authenticated user.
Response
Successful response
Example response
{
"last_read_message": "string",
"thread": "string",
"unread_count": 1
}