Slack

SLACKBOT_REMOVE_A_STAR_FROM_AN_ITEM

Removes a star from a previously starred Slack item (message, file, file comment, channel, group, or DM), requiring identification via `file`, `file_comment`, `channel` (for channel/group/DM), or both `channel` and `timestamp` (for a message).

Remote slackbot

Other tools also called SLACKBOT_REMOVE_A_STAR_FROM_AN_ITEM? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "title": "File",
      "examples": [
        "F1234567890"
      ],
      "description": "ID of the file to unstar."
    },
    "channel": {
      "type": "string",
      "title": "Channel",
      "examples": [
        "C1234567890",
        "G0987654321"
      ],
      "description": "ID of the item (channel, private group, DM) or the message's channel (if `timestamp` is also provided)."
    },
    "timestamp": {
      "type": "string",
      "title": "Timestamp",
      "examples": [
        "1629883200.000100",
        "1503435956.000247"
      ],
      "description": "Timestamp of the message to unstar; requires `channel`."
    },
    "file_comment": {
      "type": "string",
      "title": "File Comment",
      "examples": [
        "Fc1234567890"
      ],
      "description": "ID of the file comment to unstar."
    }
  }
}
          

Provider

Slack →