Skip to main content

Manual

Use the Start node to run a flow from Actionflow Studio, the dashboard, or POST /api/runs. Manual is the default start node, not a separate trigger type dropdown.

Manual

The Start node (start) is the default entry for a flow you run on demand: from Actionflow Studio, from the ActionFlow dashboard, or from the API.

Add it

  1. Open Actionflow Studio for a new or existing ActionFlow.
  2. Choose Start from the start-node picker (or the start category in Add node).
  3. A flow can have only one start node.

There is no "Trigger Type" menu on the node. Manual, scheduled, and subflow are different start nodes.

How a manual flow runs

PathWhat happens
Actionflow StudioUse Start or Run flow. Empty required inputs can be filled in Flow inputs.
DashboardRun the flow from the flow list or overview.
API / SDK / MCPPOST /api/runs / runActionFlow / run_actionflow. See API.

triggerSource is manual for studio and dashboard runs, and api when an API key starts the same graph.

Inputs

Define node inputs on the graph as usual. Empty required fields become run-form keys ({nodeId}_{inputName}). The same keys work in payload.inputs on Trigger Run.

When to use Start vs other starts

  • Start: on-demand and API-triggered automations.
  • Start Scheduled: the platform should fire the flow on an interval or one-time runAt. See Scheduled.
  • Start Subflow: this graph is meant to be invoked by a parent Subflow node.

Inbound HTTP from a third party should use a flow webhook, not a second start-node type.

On this page