GET
/
api
/
v2
/
workflow-runs
/
{workflowRunId}
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
workflow_run = client.v2.workflow_runs.retrieve(
    "workflowRunId",
)
print(workflow_run.workflow_run)
{
  "workflowRun": "<any>"
}

Path Parameters

workflowRunId
string
required

The unique identifier of the workflow run.

Response

200
application/json

Successfully retrieved workflow run details.