New lead lands — Table trigger
Deployed, this fires whenever a row is created in the “Node Demo Leads” Flowdrome Table (the host polls the table's change feed; pick created/updated/deleted kinds on the node). Test simulates one change so you can build the downstream flow now — pair it with the “Lead ledger — Flowdrome Tables” demo, which writes the rows.
What’s inside
2 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Watch Node Demo Leads | Table Trigger | input.table |
| Welcome flow | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/new-lead-lands-table-trigger.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "New lead lands — Table trigger" - 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": "New lead lands — Table trigger",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "watch",
"type": "input.table",
"label": "Watch Node Demo Leads",
"category": "trigger",
"config": {
"table": "Node Demo Leads",
"events": [
"created"
],
"pollSeconds": 5
},
"position": {
"x": 0,
"y": 0
}
},
{
"id": "out",
"type": "utility.console",
"label": "Welcome flow",
"category": "utility",
"config": {
"message": "{{ $json.event }} row {{ $json.rowId }}: {{ $json.row.email }} ({{ $json.row.company }}) — start the welcome flow"
},
"position": {
"x": 530,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "watch",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "watch"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "Deployed, this fires whenever a row is created in the “Node Demo Leads” Flowdrome Table (the host polls the table's change feed; pick created/updated/deleted kinds on the node). Test simulates one change so you can build the downstream flow now — pair it with the “Lead ledger — Flowdrome Tables” demo, which writes the rows."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: new-lead-lands-table-trigger.json.