Get Release Bundles V2 Indexing Configuration

Xray REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Gets the indexed and not indexed Release Bundle V2 in a given binary manager.

Security: Requires an admin user

Usage: GET /xray/api/v1/binMgr/{id}/release_bundle_v2

Consumes: N/A

Produces: application/json

Path parameters:

Name

Type

Required/Optional

Description

id

string

Required

Specifies the Binary Manager ID.

Set it to default

Query parameters:

Name

Type

Required/Optional

Description

projectKey

string

Optional

When included the REST API response as if executed from the scope of a project

Response body:

Name

Type

Description

bin_mgr_id

string

The binary manager ID of the environment

indexed_release_bundle_v2

string

The list of the indexed release bundles v2

non_indexed_release_bundle_v2

string

The list of the not indexed release bundles v2

Response codes:

Status Code

Description

200

OK

401

Bad Credentials

500

Failed to obtain a response

Example of successful response:

200 OK
{
    "bin_mgr_id": "default",
    "indexed_release_bundle_v2": [
        "example-2",
        "example-3"
    ],
    "non_indexed_release_bundle_v2": [
        "example",
        "example-1"
    ]
}