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": "<any>"
}
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": "<any>"
}
The unique identifier of the workflow run.
Successfully retrieved workflow run details.