Skip to main content

UnifiedViews Method - Request the Last Running or Queued Pipeline Execution

Abstract

UnifiedViews Method - Request the Last Running or Queued Pipeline Execution

Description

Request all last running pipeline or queued executions.

URL: http://{server}/master/api/1/pipelines/{pipeline_id}/executions/pending

Content Type

application/json

Request

Supported Method

GET

ResponseContent-Type

application/json

Status: 200 - OK

Response Returns

Returns a single pipeline execution entry, the last one according to its end time.

Only the following statuses are considered:

  • QUEUED

  • RUNNING

  • CANCELLING are selected but presented as RUNNING

Example Response
[{
    id: 3,
    status: "QUEUED",
    isDebugging: false,
    orderNumber: 1,
        start: "2014-08-08T15:15:15.555Z",
    end: "2014-08-08T15:15:15.555Z",
    schedule: 12,
    stop: false,
    lastChange: "2014-08-08T15:15:15.555Z"
}]