Skip to main content
StepInput can retrieve any previous step output by name, including outputs nested in workflow primitives.

Available Methods

Accessing Nested Steps

You can directly access steps nested inside Parallel, Condition, Router, Loop, and Steps groups using their step name. The lookup performs a recursive search to find nested steps at any depth.

Direct Access to Steps in Parallel Groups

Deeply Nested Steps

The recursive search works at any depth level:
A top-level output takes priority when the same step name also exists in a nested group.

Parallel Group Output Format

When accessing a Parallel group by its name, the output is a dictionary with each nested step’s name as the key:

Developer Resources