from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
workflow_run = client.v2.workflow_runs.retrieve(
"workflowRunId",
)
print(workflow_run.workflow_run){
"workflowRun": "<unknown>"
}Retrieves the complete details of a specific workflow run by its ID.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
workflow_run = client.v2.workflow_runs.retrieve(
"workflowRunId",
)
print(workflow_run.workflow_run){
"workflowRun": "<unknown>"
}