Skip to content

Get workflow run status

$ lightfield workflow-run status
GET/v1/workflowRun/{runId}/status

Returns the current status of a workflow run.

ParametersExpand Collapse
--run-id: string

Unique identifier of the workflow run.

ReturnsExpand Collapse
workflowRun_status_response: object { status }
status: string

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

Get workflow run status

lightfield workflow-run status \
  --api-key 'My API Key' \
  --run-id runId
{
  "status": "status"
}
Returns Examples
{
  "status": "status"
}