POST
/conversations.markMark a conversation as read
Sets the authenticated user's read cursor in a conversation. Provide the conversation in channel and the timestamp of the most recently seen message in ts, using an authentication token with the conversations:write scope when authorization is required.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
tokenstringoptional
Authentication token for the request; it must provide the `conversations:write` scope.
Optional form-encoded read-cursor details.
channelstringoptional
Channel or conversation to set the read cursor for.
tsnumberoptional
Unique identifier of message you want marked as most recently seen in this conversation.
200Returns a success object with `ok` set to true.
okbooleanrequired
defaultTypical error response
callstackstringoptional
Note: PHP callstack is only visible in dev/qa
errorstringrequired
neededstringoptional
okbooleanrequired
providedstringoptional
Error handling
channel must identify a conversation the authenticated user can access, and ts must be the numeric timestamp of a message in that conversation. The token must provide the conversations:write scope when supplied for authentication.