Slack

SLACKBOT_SET_READ_CURSOR_IN_A_CONVERSATION

Marks a message, specified by its timestamp (`ts`), as the most recently read for the authenticated user in the given `channel`, provided the user is a member of the channel and the message exists within it.

Remote slackbot

Other tools also called SLACKBOT_SET_READ_CURSOR_IN_A_CONVERSATION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "ts": {
      "type": "integer",
      "title": "Ts",
      "examples": [
        "1678886400.000100",
        "1702982400.123456"
      ],
      "description": "The timestamp of the message to mark as the most recently read. This is typically a Unix timestamp with microsecond precision (e.g., '1625800000.000200')."
    },
    "channel": {
      "type": "string",
      "title": "Channel",
      "examples": [
        "C012QRSTUW9",
        "G012ABCDEFG",
        "D012HIJKLMN"
      ],
      "description": "The ID of the public channel, private channel, or direct message to set the read cursor for."
    }
  }
}
          

Provider

Slack →