add_multiple_reactions
Add multiple emoji reactions to a specific message in a Discord channel by providing the channel ID, message ID, and a list of emojis.
Instructions
Add multiple reactions to a message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | Channel containing the message | |
| emojis | Yes | List of emojis to add as reactions | |
| message_id | Yes | Message to react to |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "Channel containing the message",
"type": "string"
},
"emojis": {
"description": "List of emojis to add as reactions",
"items": {
"description": "Emoji to react with (Unicode or custom emoji ID)",
"type": "string"
},
"type": "array"
},
"message_id": {
"description": "Message to react to",
"type": "string"
}
},
"required": [
"channel_id",
"message_id",
"emojis"
],
"type": "object"
}