remove_reaction
Eliminate a reaction emoji from a Slack message by specifying the channel ID, message timestamp, and emoji name.
Instructions
Remove a reaction emoji from 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"
}