Endpoint
Overview
This endpoint allows you to send new Discord webhook messages or edit existing ones by providing the webhook URL, message content or embeds, and (for edits) the message ID.Authentication
This endpoint requires an API key. You can retrieve an API key from your dashboard. Include it in theX-API-KEY header:
Request Body
For sending new messages (POST)
| Field | Type | Required | Description |
|---|---|---|---|
webhookUrl | string | ✅ yes | Full Discord webhook URL (must be https on discord.com or discordapp.com). |
payload | object | ✅ yes | Discord message payload. Must have content or at least one embed. |
For editing messages (PATCH)
| Field | Type | Required | Description |
|---|---|---|---|
webhookUrl | string | ✅ yes | Discord webhook URL. |
messageId | string | ✅ yes | ID of the Discord message to edit. |
payload | object | ✅ yes | Updated Discord message payload. Same rules as above. |