discord_edit_embed
Fully replace an embed on a bot message. Supply channel and message IDs, then define title, description, color, fields, author, footer, images, or timestamp; fields not provided are removed.
Instructions
Replace the embed on a message previously sent by this bot. Only this bot's messages can be edited. This is a full replace, not a merge: provided fields are applied and omitted fields are dropped from the embed. Returns a confirmation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ID (snowflake) of the channel or thread containing the message. | |
| message_id | Yes | ID of the message to edit. Must be a bot message that already contains an embed. | |
| title | No | Embed title shown in bold at the top. | |
| url | No | URL that makes the title clickable. | |
| description | No | Main body text of the embed (supports Markdown). | |
| color | No | Side-bar color as a hex string, e.g. '#5865F2'. | |
| fields | No | Up to 25 name/value field blocks. Set inline:true on a field to render it side-by-side with adjacent inline fields (up to 3 per row). | |
| author | No | Author block shown at the top of the embed. | |
| thumbnail_url | No | Small image shown in the top-right corner. | |
| footer | No | Footer text shown at the bottom of the embed. | |
| image_url | No | Large image shown below the embed body. | |
| timestamp | No | If true, stamp the embed with the current time. |