Discord — inbound messages
SETUP: register a Discord interactions endpoint (or gateway relay) pointing at this workflow's deployed URL. Test simulates one message.
What’s inside
2 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Discord inbound | Discord Trigger | input.discord |
| Bot command | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/discord-inbound-messages.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "Discord — inbound messages" - Any credentials the nodes need are
${credential.…}references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 2 node types)
{
"schemaVersion": "flowdrome.workflow.v1",
"id": "",
"name": "Discord — inbound messages",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "dc",
"type": "input.discord",
"label": "Discord inbound",
"category": "trigger",
"config": {},
"position": {
"x": 0,
"y": 0
}
},
{
"id": "out",
"type": "utility.console",
"label": "Bot command",
"category": "utility",
"config": {
"message": "Discord {{ $json.author }}: {{ $json.content }}"
},
"position": {
"x": 530,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "dc",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "dc"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "SETUP: register a Discord interactions endpoint (or gateway relay) pointing at this workflow's deployed URL. Test simulates one message."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: discord-inbound-messages.json.