remove-emoji-reaction
Remove an emoji reaction from a Zulip message by specifying the message ID and emoji name or Unicode code. Simplifies managing reactions in collaborative workflows.
Instructions
Remove an emoji reaction from a message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emoji_code | No | Unicode code point for the emoji | |
emoji_name | Yes | Emoji name to remove (e.g., 'thumbs_up', 'heart') | |
message_id | Yes | ID of the message to remove reaction from | |
reaction_type | No | Type of emoji reaction |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emoji_code": {
"description": "Unicode code point for the emoji",
"type": "string"
},
"emoji_name": {
"description": "Emoji name to remove (e.g., 'thumbs_up', 'heart')",
"type": "string"
},
"message_id": {
"description": "ID of the message to remove reaction from",
"type": "number"
},
"reaction_type": {
"description": "Type of emoji reaction",
"enum": [
"unicode_emoji",
"realm_emoji",
"zulip_extra_emoji"
],
"type": "string"
}
},
"required": [
"message_id",
"emoji_name"
],
"type": "object"
}