Get 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
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"
}