Get release progressions for release pipeline

GET
/api/v2/projects/:projectKey/release-pipelines/:pipelineKey/releases

Get details on the progression of all releases, across all flags, for a release pipeline

Path parameters

projectKeystringRequired

The project key

pipelineKeystringRequired

The pipeline key

Query parameters

filterstringOptional

Accepts filter by status and activePhaseId. status can take a value of completed or active. activePhaseId takes a UUID and will filter results down to releases active on the specified phase. Providing status equals completed along with an activePhaseId filter will return an error as they are disjoint sets of data. The combination of status equals active and activePhaseId will return the same results as activePhaseId alone.

limitlongOptional

The maximum number of items to return. Defaults to 20.

offsetlongOptional

Where to start in the list. Defaults to 0. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query limit.

Response

Release progression collection

activeCountinteger

The number of active releases

completedCountinteger

The number of completed releases

itemslist of objects

A list of details for each release, across all flags, for this release pipeline

phaseslist of objects

A list of details for each phase, across all releases, for this release pipeline

totalCountinteger

The total number of releases for this release pipeline

Errors

Built with