from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.step.get_output(
"stepId",
)
print(response.output){
"output": "<unknown>"
}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": "<unknown>"
}