add_reaction
Add an emoji reaction to a specific message in a Slack channel using channel ID, message timestamp, and emoji name. Facilitates quick and precise engagement in Slack workspaces.
Instructions
Add a reaction emoji to a message.
Args: channel: Channel ID where the message exists timestamp: Timestamp of the message emoji_name: Name of the emoji (without colons)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
emoji_name | Yes | ||
timestamp | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"emoji_name": {
"title": "Emoji Name",
"type": "string"
},
"timestamp": {
"title": "Timestamp",
"type": "string"
}
},
"required": [
"channel",
"timestamp",
"emoji_name"
],
"type": "object"
}