Slack

SLACKBOT_FETCH_ITEM_REACTIONS

Fetches reactions for a Slack message, file, or file comment, requiring one of: channel and timestamp; file ID; or file comment ID.

Remote slackbot

Other tools also called SLACKBOT_FETCH_ITEM_REACTIONS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "title": "File",
      "examples": [
        "F1234567890",
        "F2147483002"
      ],
      "description": "File ID. Use instead of channel/timestamp or file comment ID."
    },
    "full": {
      "type": "boolean",
      "title": "Full",
      "description": "If true, returns the complete list of users for each reaction."
    },
    "channel": {
      "type": "string",
      "title": "Channel",
      "examples": [
        "C1234567890",
        "C061F7XAZ"
      ],
      "description": "Channel ID. Required if `timestamp` is provided and no file or file comment ID is given."
    },
    "timestamp": {
      "type": "string",
      "title": "Timestamp",
      "examples": [
        "1234567890.123456",
        "1629876543.000100"
      ],
      "description": "Message timestamp (e.g., '1234567890.123456'). Required if `channel` is provided and no file or file comment ID is given."
    },
    "file_comment": {
      "type": "string",
      "title": "File Comment",
      "examples": [
        "Fc1234567890",
        "Fc789123456"
      ],
      "description": "File comment ID. Use instead of channel/timestamp or file ID."
    }
  }
}
          

Provider

Slack →