latestOpenAPI 3.0.32026-08-201592,4923.4 MB

53223abaceb7

Workflow Runner

Read the progress of a workflow run.

get/workflow-runner/runs/{workflowRunId}/progress

Path parameters

workflowRunIdstring required

Response

Ok

elapsedTimeInSecondsinteger
estimatedRemainingTimeInSecondsinteger nullable
percentagenumber double
workflowRunIdstring

Workflow run identifier. It is a string composed of the type identifier and a UUID: workflow.run:[UUID].

Example response

{
  "finished": [
    {
      "methodRunId": "method.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "nestedWorkflowRunId": "workflow.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "operationRunId": "operation.run:3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }
  ],
  "pending": [
    {
      "methodRunId": "method.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "nestedWorkflowRunId": "workflow.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "operationRunId": "operation.run:3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }
  ],
  "running": [
    {
      "methodRunId": "method.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "nestedWorkflowRunId": "workflow.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "operationRunId": "operation.run:3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }
  ],
  "skipped": [
    {
      "methodRunId": "method.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "nestedWorkflowRunId": "workflow.run:3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "operationRunId": "operation.run:3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }
  ],
  "workflowRunId": "workflow.run:3fa85f64-5717-4562-b3fc-2c963f66afa6"
}