Skip to content

Get workflow run status

workflow_run.status(strrun_id) -> WorkflowRunStatusResponse
GET/v1/workflowRun/{runId}/status

Returns the current status of a workflow run.

ParametersExpand Collapse
run_id: str

Unique identifier of the workflow run.

ReturnsExpand Collapse
class WorkflowRunStatusResponse:
status: str

Current status of the workflow run (e.g. running, completed, failed).

Get workflow run status

from lightfield import Lightfield

client = Lightfield()
workflow_run_status_response = client.workflow_run.status(
    "runId",
)
print(workflow_run_status_response.status)
{
  "status": "status"
}
Returns Examples
{
  "status": "status"
}