discord_delete_message
Delete specific messages from a Discord text channel by providing the channel ID and message ID, ensuring precise message management and moderation.
Instructions
Deletes a specific message from a Discord text channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
messageId | Yes | ||
reason | No |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"messageId": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": [
"channelId",
"messageId"
],
"type": "object"
}