Skip to main content
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

Successfully retrieved step output data.

output
any

The output data generated by the specified workflow step.

I