Skip to main content
POST
Execute a workflow

Authorizations

x-api-key
string
header
required

Tenant API key. Required on every endpoint.

Body

application/json

Workflow execution request

workflow_id
string

Reference to a stored workflow. Preferred over inline JSON.

Example:

"wf_9f2c1a"

workflow
object

Inline workflow definition (legacy). Provide either workflow_id or workflow, not both.

input
object[]

Trigger data passed to the workflow's entry nodes.

Response

Execution accepted; poll GET /executions/{id} for status.

execution_id
string
Example:

"exec_5b7d3e"

status
string
Example:

"running"

outputs
object

Final outputs keyed by node, present once the run completes.

node_outputs
object

Per-node intermediate outputs.

errors
string[]