Discord
Messaging integration · 1 node(s).
00Overview
Discord messaging and webhook operations
Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.
01Connecting Discord
Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference
${secrets.your_secret}.02Webhook
Discord Webhook
messaging/discord/webhook · Action
Send a message to a Discord channel via webhook
| Field | Type | Details | |
|---|---|---|---|
| Webhook URL | string | Required | https://discord.com/api/webhooks/... |
| Message Content | text | Required | Hello from Flomation! |
| Username Override | string | Flomation Bot | |
| Avatar URL | string | https://example.com/avatar.png |
Returns: tool_result, status_code, success
03Notes & Limitations
Behaviours and constraints worth knowing before you build with these nodes.
- Message content is capped at 2,000 characters per send, and text beyond that limit will be rejected rather than truncated.
- Messages are posted under the webhook's own configured name and avatar, not a member account, so they always appear from the webhook identity in the channel.
- A webhook URL is tied to one specific channel, and deleting or regenerating that webhook in Discord's channel settings invalidates the URL and silently stops delivery until it is reconnected.
- Discord applies per-webhook rate limits, so very high-frequency flows may be throttled and should be paced to avoid dropped or delayed messages.