discord_send_webhook_message
Send messages to a Discord channel using a webhook. Configure webhook details, content, username, avatar, and thread ID for precise message delivery.
Instructions
Sends a message to a Discord channel using a webhook
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| avatarURL | No | ||
| content | Yes | ||
| threadId | No | ||
| username | No | ||
| webhookId | Yes | ||
| webhookToken | Yes |
Input Schema (JSON Schema)
{
"properties": {
"avatarURL": {
"type": "string"
},
"content": {
"type": "string"
},
"threadId": {
"type": "string"
},
"username": {
"type": "string"
},
"webhookId": {
"type": "string"
},
"webhookToken": {
"type": "string"
}
},
"required": [
"webhookId",
"webhookToken",
"content"
],
"type": "object"
}