discord_remove_reaction
Remove a specific emoji reaction from a Discord message by specifying the channel ID, message ID, and emoji. Simplify moderation and user interaction management.
Instructions
Removes a specific emoji reaction from a Discord message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
emoji | Yes | ||
messageId | Yes | ||
userId | No |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"emoji": {
"type": "string"
},
"messageId": {
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
}