Slack
SLACKBOT_REMOVE_REACTION_FROM_ITEM
Removes an emoji reaction from a message, file, or file comment in Slack.
Remote slackbot
Other tools also called SLACKBOT_REMOVE_REACTION_FROM_ITEM?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file": {
"type": "string",
"title": "File",
"description": "ID of the file to remove the reaction from."
},
"name": {
"type": "string",
"title": "Name",
"examples": [
"thumbsup",
"smile",
"robot_face"
],
"description": "Name of the emoji reaction to remove (e.g., 'thumbsup'), without colons."
},
"channel": {
"type": "string",
"title": "Channel",
"description": "Channel ID of the message. Required if `timestamp` is provided."
},
"timestamp": {
"type": "string",
"title": "Timestamp",
"description": "Timestamp of the message. Required if `channel` is provided."
},
"file_comment": {
"type": "string",
"title": "File Comment",
"description": "ID of the file comment to remove the reaction from."
}
}
}