Description: Returns all the release bundle versions. This endpoint supports pagination, returning up to 10 release bundles per page.
Since: 1.0
Security: Authenticated users only. The user must have read permission for the release bundle.
Usage: GET api/v1/release_bundle/:name[?start_pos=:position]
Request headers: N/A
Consumes: N/A
cURL Example
$ curl -u user:password -X GET "http://ARTIFACTORY_SERVER_HOSTNAME:8082/distribution/api/v1/release_bundle/:name?start_pos=0"
Response status codes:
200 - Success 404 - Release bundle not found
Response headers: X-RangeLimit-StartPos - number X-RangeLimit-EndPos - number
X-RangeLimit-Total - number
Produces: application/json
Response
[ { "name": "release-bundle-name", "version": "1", "state": "OPEN", "description": "release bundle description text", "release_notes": { "content": "release notes description text", "syntax": "plain_text" }, "created": "2018-03-14T17:36:35.416Z", "created_by":"[username]", "distributed_by":"[username]", "artifacts": [ { "checksum": "5880e05b5886a2fcd9a5a6dace38cd4f243affa06719c5e63116b16094e95a31", "props": [ { "key": "build.timestamp", "values": ["1521049005953"] }, ... ], "source_repo_path": "artifactory-generic/artifactory-client-java-api-0.9.2.jar", "target_repo_path": "artifactory-generic/artifactory-client-java-api-0.9.2.jar" }, ... ], "archived": false }, ... ]