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 |
|---|---|---|---|
| string | Required | Specifies the Binary Manager ID. Set it to default |
Query parameters:
Name | Type | Required/Optional | Description |
|---|---|---|---|
| string | Optional | When included the REST API response as if executed from the scope of a project |
Response body:
Name | Type | Description |
|---|---|---|
| string | The binary manager ID of the environment |
| string | The list of the indexed release bundles 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"
]
}