Get Release Bundle v2 Version Details

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Returns the details of a selected Release Bundle v2 version. The details are stored in the form of a DSSE attestation, a signature envelope with a Base64-encoded payload, which contains a snapshot of the items in the Release Bundle.

Since: 7.63.2

Security: Requires Read permissions to the target Release Bundle path.

Usage:GET  /lifecycle/api/v2/release_bundle/records/{name}/{version}

Query Parameters (optional): repository_key, project. See Common Optional Query Parameters.

Sample Response:

{
    "service_id": "jfrt@01h32axcq34n5v1x490nmd10av",
    "created_by": "admin",
    "created": "2023-06-16T18:06:20.359+03:00",
    "created_millis": 1686927980359,
    "artifacts": [
        {
            "path": "org/apache/tomcat/commons/1.0.0/commons-1.0.0.jar",
            "checksum": "3b17871439b1297248ce04df7d105c70afd6d5769a2993e0c15e37bd6006778b",
            "source_repository_key": "commons-dev-maven-local",
            "package_type": "maven",
            "package_name": "commons",
            "package_version": "1.0.0",
            "size": 100,
            "properties": [
                {
                    "key": "property-key",
                    "values": [
                        "property-value"
                    ]
                }
            ]
        },
        {
            "path": "commons-1.0.0.txt",
            "checksum": "f87e4c72e60300b451739d545afc0251a6e2f4bd1beaa1902ba739455897ecb8",
            "source_repository_key": "commons-dev-generic-local",
            "package_type": "generic",
            "size": 470,
            "properties": [
                {
                    "key": "property-key",
                    "values": [
                        "property-value"
                    ]
                }
            ]
        }
    ]
}

The response includes the following information:

Property

Description

service_id

The unique identifier of the Artifactory instance where the Release Bundle was created.

created_by

The user who created the Release Bundle.

created

The timestamp when the Release Bundle was created (ISO 8601 standard).

created_millis

The timestamp when the Release Bundle was created (in milliseconds).

path

The path of a Release Bundle item relative to its contents directory.

checksum

The SHA-256 checksum of the source artifact.

source_repository_key

The source repository of the artifact.

package_type

The package type of the source repository associated with the artifact.

package_name

The name of the package associated with the artifact.

package_version

The version of the package associated with the artifact.

size

The size of the artifact (in bytes).

properties

Original source artifact properties that were present when the Release Bundle version was created:

Status Codes:

Code

Description

200

Fetched

401

Bad Credentials

403

Permission Denied

404

Not Found (Release Bundle/version)