discord_send_webhook_message
Sends messages to Discord channels using webhooks by specifying webhook ID, token, and content. Supports custom usernames, avatars, and thread targeting.
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"
}