Description: Gets a collection of pipelines that the credential has access to. Filter criteria can be supplied via query string parameters.
Security: Requires a valid user
Usage: GET api/v1/pipelines
Query Parameters:
Parameter | Data Type | Description |
---|---|---|
| string | Optional. A filter on the list based on the |
| string | Optional. A filter on the list based on the |
| string | Optional. A filter on the list based on the |
| string | Optional. A filter on the list based on the |
| string | Optional. A filter on the list based on the |
| boolean | Optional. A filter on the list based on the |
| boolean | Optional. A filter on the list based on the |
| string($date-time) | Optional. A filter on the list that returns if |
| boolean | Optional. Default is false. If set to true only part of the data is returned |
| string | Optional. Comma separated list of sort attributes |
| integer | Optional. 1 for ascending and -1 for descending based on |
| integer | Optional. A limit on the number of pipelines returned. |
| integer | Optional. A cursor for use in pagination. |
Produces: application/json
Sample Usage:
GET api/v1/pipelines?light=true [ { "id": 375, "name": "gradle_pipeline", "pipelineSourceBranch": null, "pipelineSourceId": 544, "latestRunId": 717 }, { "id": 98, "name": "basic", "pipelineSourceBranch": null, "pipelineSourceId": 130, "latestRunId": null, } ]
Response Codes:
200: Success