Get Received Release Bundle v2 Version Artifact List

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Description: Returns a list of artifacts in the specified version of a Release Bundle v2 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}/{release_bundle_version}/artifacts

Query Parameters (optional):

Field

Type

Description

source_project_key

string

Defines the project name associated with the Release Bundle on the source Artifactory.

offset

integer

Sets the number of records to skip before returning the query response. Used for pagination purposes.

The default is 0.

limit

integer

Sets the maximum number of versions to return at one time. Used for pagination purposes.

The default is 100.

pattern {artifact_name|package_type|path|size|checksum}

string

Defines a filter for the list of artifacts.

You can filter according to:

  • artifact_name

  • package_type

  • path

  • size

  • checksum

The default is ** (all).

order_by {artifact_name|package_type|path|size|checksum}

string

Defines the criterion by which to order the Release Bundle artifacts:

  • artifact_name

  • package_type

  • path

  • size

  • checksum

order_asc {true|false}

boolean

Defines whether to list the promotions in ascending (true) or descending (false) order.

The default value is false.

Sample Response:

{
   "artifacts": [
      {
         "artifact_name": "file1.ext",
         "package_type": "nuget"
         "path": "nugat-repo/folder/file1.ext"
         "size": 3000
         "checksum": "123abcd456"
         "properties": {
            "build_number": "565"
            "property_1": "value_1"
         }
      },
      {
         "artifact_name": "file2.ext",
         "package_type": "nuget"
         "path": "nugat-repo/folder/file2.ext"
         "size": 333
         "checksum": "789abcd1011"
         "properties": {
            "property_2": "value_2"
         }
      }
   ]
}

The response includes the following information:

Property

Description

properties

The values of any optional properties associated with the artifact.

Status Codes:

Code

Description

200

Fetched

403

Permission Denied

404

Not Found