# Workflow Run ## Status `workflow_run.status(strrun_id) -> WorkflowRunStatusResponse` **get** `/v1/workflowRun/{runId}/status` Returns the current status of a workflow run. ### Parameters - `run_id: str` Unique identifier of the workflow run. ### Returns - `class WorkflowRunStatusResponse: …` - `status: str` Current status of the workflow run (e.g. `running`, `completed`, `failed`). ### Example ```python from lightfield import Lightfield client = Lightfield() workflow_run_status_response = client.workflow_run.status( "runId", ) print(workflow_run_status_response.status) ``` ## Domain Types ### Workflow Run Status Response - `class WorkflowRunStatusResponse: …` - `status: str` Current status of the workflow run (e.g. `running`, `completed`, `failed`).