Description: Returns a list of versions of a specified Release Bundle v2 that have been received by this distribution target (for example, an Edge node).
Since: 7.103.1 (Artifactory), 2.28.1 (Distribution)
Security: Requires an admin user.
Usage:GET /api/v2/release_bundle/received/{release_bundle_name}
Query Parameters (optional):
Field | Type | Description |
---|---|---|
| string | Defines the project name associated with the Release Bundle on the source Artifactory. |
| integer | Sets the number of records to skip before returning the query response. Used for pagination purposes. The default is 0. |
| integer | Sets the maximum number of versions to return at one time. Used for pagination purposes. The default is 100. |
| string | Defines a filter for the list of Release Bundle versions. For example, if you define *2* as the pattern, it returns all versions containing the number 2. The default is |
| boolean | Defines whether to list the versions in ascending (true) or descending (false) order. The default value is |
Sample Response:
{ "versions": [ { "version": "3.0.2", "date_received": 123654789, "size": 3333 }, { "version": "2.9.1", "date_received": "123654788", "size": 3323433 }, { "version": "1.0.5", "date_received": "123654787", "size": 1234 } ], "total": 3 }
The response includes the following information:
Property | Type | Description |
---|---|---|
| string | The Release Bundle version identifier. |
| date | The date when the latest Release Bundle version was received. |
| integer | The total size of all artifacts in the Release Bundle version. |
Status Codes:
Code | Description |
---|---|
200 | Fetched |
403 | Permission Denied |
404 | Not Found |