Description: Returns a list of Release Bundle v2 names mapped to their repository key. Each element includes the latest version and the total number of versions.
Since: 7.63.2
Security: Requires Read permissions to each target Release Bundle path. Release Bundles that are not permitted are excluded from the response.
Usage: GET /lifecycle/api/v2/release_bundle/groups
Query Parameters (optional):
Field | Type | Description |
|---|---|---|
| integer | Sets the number of records to skip before returning the query response. Used for pagination purposes. |
| integer | Sets the maximum number of versions to return at one time. Used for pagination purposes. |
| string | Defines a filter using a prefix of the Release Bundle name. |
| string | Defines the criterion by which to order the list of promotions: |
| boolean | Defines whether to list the promotions in ascending (true) or descending (false) order. The default value is |
Note
See Common Optional Query Parameters for additional query parameters that are available for all Release Lifecycle Management APIs.
Sample Response:
{
"release_bundles": [
{
"repository_key": "catalina-release-bundles-v2",
"project_key": "catalina",
"project_name": "Catalina",
"service_id": "jfrt@01h0nvs1pwjtzs15x7kbtv1sve",
"created": "2023-05-18T11:26:02.912Z",
"release_bundle_name": "Catalina-Bundle",
"release_bundle_version_latest": "1.0.0",
"release_bundle_versions_count": 1
},
{
"repository_key": "release-bundles-v2",
"project_key": "default",
"project_name": "Default",
"service_id": "jfrt@01h0nvs1pwjtzs15x7kbtv1sve",
"created": "2023-05-18T11:25:35.936Z",
"release_bundle_name": "Commons-Bundle",
"release_bundle_version_latest": "1.0.0",
"release_bundle_versions_count": 1
}
],
"total": 2,
"limit": 10,
"offset": 0
}Status Codes:
Code | Description |
|---|---|
200 | Fetched |