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

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
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.