Add Release Bundles V2 Indexing Configuration

Xray REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Adds new builds to the list of builds selected for indexing by only providing the new build names.

Security: Requires an admin user

Usage: POST /xray/api/v1/binMgr/release_bundle_v2

Consumes: application/json

Produces: application/json

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

Request body:

Name

Type

Required/Optional

Description

names

string

Required

The release bundle v2 names you want to add.

Response body:

Name

Type

Description

info

string

The response message

Response codes:

Status Code

Description

200

OK

401

Bad Credentials

500

Failed to obtain a response

Example request:

{
  "names": [
"Example-4"
  ]
}

Example of successful response:

200 OK
{
    "info": "release_bundle_v2 list has been successfully set to index"
}