Unified inbox — Receive Message
One normalized inbox across platforms: Receive Message extracts text/sender/channel by path regardless of which platform delivered the webhook — write your routing once.
What’s inside
2 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Normalize inbound | Receive Message | input.receive-message |
| Unified inbox | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/unified-inbox-receive-message.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "Unified inbox — Receive Message" - 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": "Unified inbox — Receive Message",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "rx",
"type": "input.receive-message",
"label": "Normalize inbound",
"category": "communication",
"config": {
"provider": "slack",
"messagePath": "event.text",
"senderPath": "event.user",
"channelPath": "event.channel"
},
"position": {
"x": 0,
"y": 23
}
},
{
"id": "out",
"type": "utility.console",
"label": "Unified inbox",
"category": "utility",
"config": {
"message": "[{{ $json.channel }}] {{ $json.sender }}: {{ $json.message }}"
},
"position": {
"x": 530,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "rx",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "rx"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "One normalized inbox across platforms: Receive Message extracts text/sender/channel by path regardless of which platform delivered the webhook — write your routing once."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: unified-inbox-receive-message.json.