Get Release Bundle v1 Versions

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Returns all the Release Bundle v1 versions. This endpoint supports pagination, returning up to 10 release bundles per page.

Important

For information about getting Release Bundle v2 versions, see Release Bundle V2 APIs.

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
  },
  ...
]