# Workflow Run ## Get workflow run status `$ lightfield workflow-run status` **get** `/v1/workflowRun/{runId}/status` Returns the current status of a workflow run. ### Parameters - `--run-id: string` Unique identifier of the workflow run. ### Returns - `workflowRun_status_response: object { status }` - `status: string` Current status of the workflow run (e.g. `running`, `completed`, `failed`). ### Example ```cli lightfield workflow-run status \ --api-key 'My API Key' \ --run-id runId ``` #### Response ```json { "status": "status" } ``` ## Domain Types ### Workflow Run Status Response - `workflowRun_status_response: object { status }` - `status: string` Current status of the workflow run (e.g. `running`, `completed`, `failed`).