Get workflow run status
client.workflowRun.status(stringrunID, RequestOptionsoptions?): WorkflowRunStatusResponse { status }
GET/v1/workflowRun/{runId}/status
Returns the current status of a workflow run.
Get workflow run status
import Lightfield from 'lightfield';
const client = new Lightfield();
const workflowRunStatusResponse = await client.workflowRun.status('runId');
console.log(workflowRunStatusResponse.status);{
"status": "status"
}Returns Examples
{
"status": "status"
}