GET
/
api
/
v2
/
workflow-runs
/
step
/
{stepId}
/
output
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.workflow_runs.step.get_output(
    "stepId",
)
print(response.output)
{
  "output": "<any>"
}

Path Parameters

stepId
string
required

The unique identifier of the workflow step.

Response

200
application/json

Successfully retrieved step output data.