Fixture kickoff — Inject

Inject is the TEST FIXTURE trigger: it fires with this exact payload on Test and never fires in production — the standard way to develop a flow before wiring the real trigger.

What’s inside

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

StepNodeType
Fixture payload Inject input.inject
Flow under test Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/fixture-kickoff-inject.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Fixture kickoff — Inject"
  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": "Fixture kickoff — Inject",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Fixture payload",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "scenario": "développement",
          "rows": 3
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Flow under test",
      "category": "utility",
      "config": {
        "message": "fixture delivered: {{ $json }}"
      },
      "position": {
        "x": 530,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "Inject is the TEST FIXTURE trigger: it fires with this exact payload on Test and never fires in production — the standard way to develop a flow before wiring the real trigger."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: fixture-kickoff-inject.json.