slack_add_reaction
Add an emoji reaction to Slack messages using channel ID, message timestamp, and reaction name to express responses or acknowledge content.
Instructions
Add a reaction emoji to a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The ID of the channel containing the message | |
reaction | Yes | The name of the emoji reaction (without ::) | |
timestamp | Yes | The timestamp of the message to react to |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "The ID of the channel containing the message",
"type": "string"
},
"reaction": {
"description": "The name of the emoji reaction (without ::)",
"type": "string"
},
"timestamp": {
"description": "The timestamp of the message to react to",
"type": "string"
}
},
"required": [
"channel_id",
"timestamp",
"reaction"
],
"type": "object"
}