Open Context Protocol is live! 🚀 Read the launch post

conversationsMark

Sets the read cursor in a channel.

POST /conversations.mark HTTP/1.1

Parameters

{
  "token": {
    "description": "Authentication token. Requires scope: `conversations:write`",
    "required": false,
    "location": "header",
    "type": "string"
  },
  "channel": {
    "description": "Channel or conversation to set the read cursor for.",
    "required": false,
    "location": "formData",
    "type": "string"
  },
  "ts": {
    "description": "Unique identifier of message you want marked as most recently seen in this conversation.",
    "required": false,
    "location": "formData",
    "type": "string"
  }
}

Response Schema

{
  "additionalProperties": false,
  "description": "Schema for successful response conversations.mark method",
  "properties": {
    "ok": {
      "enum": [
        true
      ],
      "title": "default success response",
      "type": "boolean"
    }
  },
  "required": [
    "ok"
  ],
  "title": "conversations.mark success schema",
  "type": "object"
}