v1

latestOpenAPI 3.1.02026-07-22106199311.5 KB
Pipeline Execution

Pipeline Steps Status

Represents a single execution of a pipeline triggered from a step of another pipeline.

get/v1/projects/{projectId}/pipeline-executions/{pipelineExecutionId}/steps

Path parameters

projectIdstring required
pipelineExecutionIdstring uuid required

Query parameters

{"stackTrail":"paths:/v1/projects/{projectId}/pipeline-executions/{pipelineExecutionId}/steps:get:parameters:2:schema","oasType":"schema","type":"unknown"}

Page number (0-indexed)

{"stackTrail":"paths:/v1/projects/{projectId}/pipeline-executions/{pipelineExecutionId}/steps:get:parameters:3:schema","oasType":"schema","type":"unknown"}

Number of records per page (from 1 to 100)

Response

Pipeline status has been retrieved

pageinteger

The 0-indexed page number of the returned results.

sizeinteger

The size of each page of results.

totalinteger

Total number of available results across all pages.

Example response

{
  "page": 1,
  "results": [
    {
      "childPipeline": {
        "id": "b715b912-41fb-402c-ad3b-1807313670e3",
        "name": "start"
      },
      "id": "b715b912-41fb-402c-ad3b-1807313670e8",
      "name": "start",
      "result": {
        "message": "\"Rewrite Table\": Success",
        "status": "RUNNING"
      }
    }
  ],
  "size": 50,
  "total": 472
}