Slack
SLACKBOT_ADD_REACTION_TO_AN_ITEM
Adds a specified emoji reaction to an existing message in a Slack channel, identified by its timestamp; does not remove or retrieve reactions.
Remote slackbot
Other tools also called SLACKBOT_ADD_REACTION_TO_AN_ITEM?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"examples": [
"thumbsup",
"grinning",
"robot_face",
"wave::skin-tone-3"
],
"description": "Name of the emoji to add as a reaction (e.g., 'thumbsup'). This is the emoji name without colons. For emojis with skin tone modifiers, append '::skin-tone-X' where X is a number from 2 to 6 (e.g., 'wave::skin-tone-3')."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"G0987654321"
],
"description": "ID of the channel where the message to add the reaction to was posted."
},
"timestamp": {
"type": "string",
"title": "Timestamp",
"examples": [
"1234567890.123456",
"1609459200.000200"
],
"description": "Timestamp of the message to which the reaction will be added. This is a unique identifier for the message, typically a string representing a float value like '1234567890.123456'."
}
}
}