discord_delete_webhook
Delete a specific Discord webhook using its ID and token to manage channel integrations effectively. Supports providing a reason for deletion.
Instructions
Deletes an existing webhook for a Discord channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reason | No | ||
webhookId | Yes | ||
webhookToken | No |
Input Schema (JSON Schema)
{
"properties": {
"reason": {
"type": "string"
},
"webhookId": {
"type": "string"
},
"webhookToken": {
"type": "string"
}
},
"required": [
"webhookId"
],
"type": "object"
}