Slack — inbound events

SETUP: point a Slack app's Event Subscriptions at this workflow's deployed URL — mentions and DMs become runs. Test simulates one event.

What’s inside

2 nodes — every type links to its full reference page.

StepNodeType
Slack events Slack Trigger input.slack
Ops channel feed Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/slack-inbound-events.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Slack — inbound events"
  3. 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": "Slack — inbound events",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "slack",
      "type": "input.slack",
      "label": "Slack events",
      "category": "trigger",
      "config": {},
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Ops channel feed",
      "category": "utility",
      "config": {
        "message": "Slack {{ $json.event.user }} in {{ $json.event.channel }}: {{ $json.event.text }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "slack",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "slack"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "SETUP: point a Slack app's Event Subscriptions at this workflow's deployed URL — mentions and DMs become runs. Test simulates one event."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: slack-inbound-events.json.