Workflows
Get Workflow Details
Retrieve the workflow object — name, status, nodes and edges
GET
Before you can execute a case, you must know what inputs the workflow expects. This endpoint returns the workflow object: its name, status, and the full node/edge graph.
The workflow’s input definitions live on the input node: look up
nodes[workflowInputNodeId].input_schema.schema to get the variable names and types you need for the Execute Case payload.
By default, the response describes the latest version of the workflow. To inspect a specific historical version, pass either the workflowVersionNumber or the workflowVersionId UUID as a query parameter.
Path Parameters
string
required
The unique identifier of the workflow to retrieve details for
Query Parameters
number
Workflow version number to retrieve. Omit to use the latest version.
string
Specific workflow version UUID. Takes precedence over
workflowVersionNumber when both are supplied.Headers
string
required
Your API authentication key
Response
string
required
The workflow ID
string
The workflow version ID this object represents
number
required
The workflow version number this object represents
number
The latest version number of the workflow
string
required
Workflow name
string
Workflow description
string
Validity status of the workflow
string
Active status of the workflow
string
ID of the workflow input node — its entry in
nodes carries the input schema for Execute Casestring
ID of the workflow output node — its entry in
nodes defines the output variables returned by Get Case Resultsstring[]
required
IDs of the starting nodes
string[]
required
IDs of the ending nodes
object
required
The workflow nodes keyed by node ID. Node objects use snake_case keys — the input node’s
input_schema.schema maps variable names to their definitions (type, display_name, type_definition, …).object
required
The workflow edges keyed by edge ID
string
ISO timestamp of the workflow’s most recent execution.
null if never run.Errors
Unauthorized
Missing, invalid, or expired API key.
Not Found
The workflow does not exist.