delete_channel
Remove unwanted Discord channels by providing the channel ID and optional reason for deletion. Ideal for maintaining server organization and managing channels efficiently.
Instructions
Delete a channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | ID of channel to delete | |
reason | No | Reason for deletion |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "ID of channel to delete",
"type": "string"
},
"reason": {
"description": "Reason for deletion",
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
}