add_reaction
Add emoji reactions to Slack messages to express responses, acknowledge contributions, or provide quick feedback in team conversations.
Instructions
Add an emoji reaction to a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | Channel ID | |
name | Yes | Emoji name (without colons) | |
timestamp | Yes | Message timestamp |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "Channel ID",
"type": "string"
},
"name": {
"description": "Emoji name (without colons)",
"type": "string"
},
"timestamp": {
"description": "Message timestamp",
"type": "string"
}
},
"required": [
"channel",
"timestamp",
"name"
],
"type": "object"
}