Get Received Release Bundle v2 Version Status

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Description: Returns the status of the specified Release Bundle v2 version 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}/status

Query Parameters (optional):

Field

Type

Description

source_project_key

string

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

Sample Response (without errors):

{
    "status": "COMPLETED"
}

Sample Response (with errors):

{
   "status": “FAILED”,
   "messages": [
                {
                    "text": "Invalid AQL query for Release Bundle creation"
                }
            ]
}

The response includes the following information:

Property

Description

status

The status of the Release Bundle version. Possible values include:

  • STARTED: Distribution of the Release Bundle version to this target is in progress.

  • COMPLETED: The Release Bundle version was received successfully.

  • FAILED: The Release Bundle was not received successfully.

messages

Error messages generated by a failed distribution.

Status Codes:

Code

Description

200

Fetched

403

Permission Denied

404

Not Found