Discord é uma poderosa plataforma de comunicação que permite conectar-se com amigos, comunidades e equipes. Ela oferece uma variedade de recursos para colaboração em equipe, incluindo canais de texto, canais de voz e videochamadas.
Com uma conta ou bot do Discord, você pode:
- Enviar mensagens: Enviar mensagens para um canal específico
- Obter mensagens: Obter mensagens de um canal específico
- Obter servidor: Obter informações sobre um servidor específico
- Obter usuário: Obter informações sobre um usuário específico
No Zoen, a integração do Discord permite que seus agentes acessem e aproveitem os servidores Discord da sua organização. Os agentes podem recuperar informações de canais do Discord, buscar usuários específicos, obter informações do servidor e enviar mensagens. Isso permite que seus fluxos de trabalho se integrem às suas comunidades no Discord, automatizem notificações e criem experiências interativas.
Importante: Para ler o conteúdo das mensagens, seu bot do Discord precisa ter o "Message Content Intent" habilitado no Discord Developer Portal. Sem essa permissão, você ainda receberá metadados da mensagem, mas o campo de conteúdo aparecerá vazio.
Os componentes do Discord no Zoen usam lazy loading eficiente, buscando dados apenas quando necessário para minimizar chamadas de API e evitar rate limiting. A renovação do token acontece automaticamente em segundo plano para manter sua conexão.
- Acesse o Discord Developer Portal
- Crie uma nova aplicação e navegue até a aba "Bot"
- Crie um bot e copie o token do bot
- Em "Privileged Gateway Intents", habilite o Message Content Intent para ler o conteúdo das mensagens
- Convide seu bot para seus servidores com as permissões apropriadas
Comprehensive Discord integration: messages, threads, channels, roles, members, invites, and webhooks.
Send a message to a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to send the message to, e.g., 123456789012345678 |
content | string | No | The text content of the message |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
files | file[] | No | Files to attach to the message |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
files | file[] | Files attached to the message |
data | object | Discord message data |
↳ id | string | Message ID |
↳ content | string | Message content |
↳ channel_id | string | Channel ID where message was sent |
↳ author | object | Message author information |
↳ id | string | Author user ID |
↳ username | string | Author username |
↳ avatar | string | Author avatar hash |
↳ bot | boolean | Whether author is a bot |
↳ timestamp | string | Message timestamp |
↳ edited_timestamp | string | Message edited timestamp |
↳ embeds | array | Message embeds |
↳ attachments | array | Message attachments |
↳ mentions | array | User mentions in message |
↳ mention_roles | array | Role mentions in message |
↳ mention_everyone | boolean | Whether message mentions everyone |
Retrieve messages from a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to retrieve messages from, e.g., 123456789012345678 |
limit | number | No | Maximum number of messages to retrieve (default: 10, max: 100) |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Container for messages data |
↳ messages | array | Array of Discord messages with full metadata |
↳ id | string | Message ID |
↳ content | string | Message content |
↳ channel_id | string | Channel ID |
↳ author | object | Message author information |
↳ id | string | Author user ID |
↳ username | string | Author username |
↳ avatar | string | Author avatar hash |
↳ bot | boolean | Whether author is a bot |
↳ timestamp | string | Message timestamp |
↳ edited_timestamp | string | Message edited timestamp |
↳ embeds | array | Message embeds |
↳ attachments | array | Message attachments |
↳ mentions | array | User mentions in message |
↳ mention_roles | array | Role mentions in message |
↳ mention_everyone | boolean | Whether message mentions everyone |
↳ channel_id | string | Channel ID |
Retrieve information about a Discord server (guild)
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Discord server (guild) information |
↳ id | string | Server ID |
↳ name | string | Server name |
↳ icon | string | Server icon hash |
↳ description | string | Server description |
↳ owner_id | string | Server owner user ID |
↳ roles | array | Server roles |
↳ approximate_member_count | number | Approximate total member count |
↳ approximate_presence_count | number | Approximate online member count |
Retrieve information about a Discord user
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | Discord bot token for authentication |
userId | string | Yes | The Discord user ID, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Discord user information |
↳ id | string | User ID |
↳ username | string | Username |
↳ discriminator | string | User discriminator (4-digit number) |
↳ avatar | string | User avatar hash |
↳ bot | boolean | Whether user is a bot |
↳ system | boolean | Whether user is a system user |
↳ email | string | User email (if available) |
↳ verified | boolean | Whether user email is verified |
Edit an existing message in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message to edit, e.g., 123456789012345678 |
content | string | No | The new text content for the message |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Updated Discord message data |
↳ id | string | Message ID |
↳ content | string | Updated message content |
↳ channel_id | string | Channel ID |
↳ edited_timestamp | string | Message edited timestamp |
Delete a message from a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message to delete, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Delete 2-100 messages from a Discord channel in a single request
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to delete messages from, e.g., 123456789012345678 |
messageIds | json | Yes | Array of 2-100 message IDs to delete. Messages older than 2 weeks cannot be bulk deleted. |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Add a reaction emoji to a Discord message
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message to react to, e.g., 123456789012345678 |
emoji | string | Yes | The emoji to react with (unicode emoji or custom emoji in name:id format) |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Remove a reaction from a Discord message
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message with the reaction, e.g., 123456789012345678 |
emoji | string | Yes | The emoji to remove (unicode emoji or custom emoji in name:id format) |
userId | string | No | The user ID whose reaction to remove (omit to remove bot's own reaction), e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Pin a message in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message to pin, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Unpin a message in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID containing the message, e.g., 123456789012345678 |
messageId | string | Yes | The ID of the message to unpin, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Retrieve all pinned messages in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to retrieve pinned messages from, e.g., 123456789012345678 |
limit | number | No | Maximum number of pins to return per page (1-50). Defaults to 50. |
before | string | No | Return pins created before this ISO8601 timestamp, for paging past the first 50 results |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | array | Array of pinned Discord messages |
↳ id | string | Message ID |
↳ content | string | Message content |
↳ channel_id | string | Channel ID |
↳ timestamp | string | Message timestamp |
↳ pinned_at | string | When the message was pinned |
↳ author | object | Message author information |
↳ id | string | Author user ID |
↳ username | string | Author username |
hasMore | boolean | Whether more pinned messages exist beyond this page |
Create a thread in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to create the thread in, e.g., 123456789012345678 |
name | string | Yes | The name of the thread (1-100 characters) |
messageId | string | No | The message ID to create a thread from (if creating from existing message), e.g., 123456789012345678 |
autoArchiveDuration | number | No | Duration in minutes to auto-archive the thread (60, 1440, 4320, 10080) |
isPublic | boolean | No | Whether the standalone thread is public (visible to everyone in the channel) or private. Ignored when creating a thread from an existing message, which always inherits the parent channel visibility. Defaults to public if omitted. |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Created thread data |
↳ id | string | Thread ID |
↳ name | string | Thread name |
↳ type | number | Thread channel type |
↳ guild_id | string | Server ID |
↳ parent_id | string | Parent channel ID |
Join a thread in Discord
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
threadId | string | Yes | The thread ID to join, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Leave a thread in Discord
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
threadId | string | Yes | The thread ID to leave, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Archive or unarchive a thread in Discord
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
threadId | string | Yes | The thread ID to archive/unarchive, e.g., 123456789012345678 |
archived | boolean | Yes | Whether to archive (true) or unarchive (false) the thread |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Updated thread data |
↳ id | string | Thread ID |
↳ archived | boolean | Whether thread is archived |
Create a new channel in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
name | string | Yes | The name of the channel (1-100 characters) |
type | number | No | Channel type (0=text, 2=voice, 4=category, 5=announcement, 13=stage) |
topic | string | No | Channel topic (0-1024 characters) |
parentId | string | No | Parent category ID for the channel, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Created channel data |
↳ id | string | Channel ID |
↳ name | string | Channel name |
↳ type | number | Channel type |
↳ guild_id | string | Server ID |
Update a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to update, e.g., 123456789012345678 |
name | string | No | The new name for the channel |
topic | string | No | The new topic for the channel |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Updated channel data |
↳ id | string | Channel ID |
↳ name | string | Channel name |
↳ type | number | Channel type |
↳ topic | string | Channel topic |
Delete a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to delete, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | The deleted channel, as returned by Discord |
↳ id | string | Channel ID |
↳ name | string | Channel name |
↳ type | number | Channel type |
↳ guild_id | string | Server ID |
Get information about a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to retrieve, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Channel data |
↳ id | string | Channel ID |
↳ name | string | Channel name |
↳ type | number | Channel type |
↳ topic | string | Channel topic |
↳ guild_id | string | Server ID |
List all channels in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | array | Array of Discord channels in the server |
↳ id | string | Channel ID |
↳ name | string | Channel name |
↳ type | number | Channel type |
↳ topic | string | Channel topic |
↳ parent_id | string | Parent category ID |
↳ position | number | Sort position within the channel list |
Create a new role in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
name | string | Yes | The name of the role |
color | number | No | RGB color value as integer (e.g., 0xFF0000 for red) |
hoist | boolean | No | Whether to display role members separately from online members |
mentionable | boolean | No | Whether the role can be mentioned |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Created role data |
↳ id | string | Role ID |
↳ name | string | Role name |
↳ color | number | Role color |
↳ hoist | boolean | Whether role is hoisted |
↳ mentionable | boolean | Whether role is mentionable |
Update a role in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
roleId | string | Yes | The role ID to update, e.g., 123456789012345678 |
name | string | No | The new name for the role |
color | number | No | RGB color value as integer |
hoist | boolean | No | Whether to display role members separately |
mentionable | boolean | No | Whether the role can be mentioned |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Updated role data |
↳ id | string | Role ID |
↳ name | string | Role name |
↳ color | number | Role color |
Delete a role from a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
roleId | string | Yes | The role ID to delete, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Assign a role to a member in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to assign the role to, e.g., 123456789012345678 |
roleId | string | Yes | The role ID to assign, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Remove a role from a member in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to remove the role from, e.g., 123456789012345678 |
roleId | string | Yes | The role ID to remove, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
List all roles in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | array | Array of Discord roles in the server |
↳ id | string | Role ID |
↳ name | string | Role name |
↳ color | number | Role color |
↳ hoist | boolean | Whether role is hoisted |
↳ position | number | Role position in the hierarchy |
↳ mentionable | boolean | Whether role is mentionable |
Kick a member from a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to kick, e.g., 123456789012345678 |
reason | string | No | Reason for kicking the member |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Ban a member from a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to ban, e.g., 123456789012345678 |
reason | string | No | Reason for banning the member |
deleteMessageSeconds | number | No | Seconds of message history to delete, 0-604800 (7 days) |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Unban a member from a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to unban, e.g., 123456789012345678 |
reason | string | No | Reason for unbanning the member |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Get information about a member in a Discord server
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to retrieve, e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Member data |
↳ user | object | User information |
↳ id | string | User ID |
↳ username | string | Username |
↳ avatar | string | Avatar hash |
↳ nick | string | Server nickname |
↳ roles | array | Array of role IDs |
↳ joined_at | string | When the member joined |
Update a member in a Discord server (e.g., change nickname)
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
userId | string | Yes | The user ID to update, e.g., 123456789012345678 |
nick | string | No | New nickname for the member (null to remove) |
mute | boolean | No | Whether to mute the member in voice channels |
deaf | boolean | No | Whether to deafen the member in voice channels |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Updated member data |
↳ nick | string | Server nickname |
↳ mute | boolean | Voice mute status |
↳ deaf | boolean | Voice deaf status |
Create an invite link for a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to create an invite for, e.g., 123456789012345678 |
maxAge | number | No | Duration of invite in seconds (0 = never expires, default 86400) |
maxUses | number | No | Max number of uses (0 = unlimited, default 0) |
temporary | boolean | No | Whether invite grants temporary membership |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Created invite data |
↳ code | string | Invite code |
↳ url | string | Full invite URL |
↳ max_age | number | Max age in seconds |
↳ max_uses | number | Max uses |
↳ temporary | boolean | Whether temporary |
Get information about a Discord invite
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
inviteCode | string | Yes | The invite code to retrieve |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Invite data |
↳ code | string | Invite code |
↳ guild | object | Server information |
↳ channel | object | Channel information |
↳ approximate_member_count | number | Approximate member count |
↳ approximate_presence_count | number | Approximate online count |
Delete a Discord invite
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
inviteCode | string | Yes | The invite code to delete |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
Create a webhook in a Discord channel
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
channelId | string | Yes | The Discord channel ID to create the webhook in, e.g., 123456789012345678 |
name | string | Yes | Name of the webhook (1-80 characters) |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Created webhook data |
↳ id | string | Webhook ID |
↳ name | string | Webhook name |
↳ token | string | Webhook token |
↳ url | string | Webhook URL |
↳ channel_id | string | Channel ID |
Execute a Discord webhook to send a message
| Parameter | Type | Required | Description |
|---|
webhookId | string | Yes | The webhook ID, e.g., 123456789012345678 |
webhookToken | string | Yes | The webhook token |
content | string | Yes | The message content to send |
username | string | No | Override the default username of the webhook |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Message sent via webhook |
↳ id | string | Message ID |
↳ content | string | Message content |
↳ channel_id | string | Channel ID |
↳ timestamp | string | Message timestamp |
Get information about a Discord webhook
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
webhookId | string | Yes | The webhook ID to retrieve, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |
data | object | Webhook data |
↳ id | string | Webhook ID |
↳ name | string | Webhook name |
↳ channel_id | string | Channel ID |
↳ guild_id | string | Server ID |
↳ token | string | Webhook token |
Delete a Discord webhook
| Parameter | Type | Required | Description |
|---|
botToken | string | Yes | The bot token for authentication |
webhookId | string | Yes | The webhook ID to delete, e.g., 123456789012345678 |
serverId | string | Yes | The Discord server ID (guild ID), e.g., 123456789012345678 |
| Parameter | Type | Description |
|---|
message | string | Success or error message |