remove_reaction
Remove emoji reactions from Slack messages to clean up conversations or correct accidental reactions using channel ID, message timestamp, and emoji name.
Instructions
Remove an emoji reaction from 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"
}