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>"
}
Retrieves the output data of a specific step within a workflow run. This endpoint requires an ExecuteStepRequestContext with workflowRunId
and stepAddr
.
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>"
}
The unique identifier of the workflow step.
Successfully retrieved step output data.