action discord_create_message { label: "Create message" description: "Post a message to a Discord channel." provider: discord method: POST path: "/channels/{channel_id}/messages" encoding: json scopes: ["identify"] input: @json { { "type": "object", "required": ["channel_id", "content"], "additionalProperties": false, "properties": { "channel_id": { "type": "string", "description": "Discord channel id." }, "content": { "type": "string", "description": "Message text (up to 2000 characters)." }, "embeds": { "type": "array", "items": { "type": "object" } } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "channel_id": { "type": "string" }, "content": { "type": "string" }, "timestamp": { "type": "string" } } } } }