Description: Get the scan status of a Release Bundle.
Note: Only for Release Bundles that are set to be indexed by Xray.
Applicable Environment: JFrog SaaS, Self-Hosted
Since: 3.80.9
Security: Requires a valid user with the Read permission.
Usage: POST xray/api/v1/releaseBundle/status
Consumes: application/json
Produces: application/json
Request Body
Parameter | Type | Required/Optional | Description |
---|---|---|---|
| string | required | The Release Bundle name |
| string | required | The Release Bundle version |
Response Body:
Parameter | Type | Description |
---|---|---|
| Overall scan status object | |
| Detailed scan status object |
OverallObj:
Parameter | Type | Description |
---|---|---|
| string | Overall status of the scan. Possible values: |
| string | Timestamp in RFC 3339 format of the scan status. |
DetailsObj:
Parameter | Type | Description |
---|---|---|
| SCA scan status object | |
| Contextual analysis scan status object | |
| Exposures scan status object | |
| Violations scan status object |
ScaObj:
Parameter | Type | Description |
---|---|---|
| string | Possible values: |
| string | Timestamp in RFC 3339 format of the SCA scan status. |
ContextualObj
Parameter | Type | Description |
---|---|---|
| string | Possible values: |
| string | Timestamp in RFC 3339 format of the SCA scan status. |
ExposuresObj
Parameter | Type | Description |
---|---|---|
| string | Possible values: |
| string | Timestamp in RFC 3339 format of the SCA scan status. |
| Categories of the exposures scan |
ExposuresCategoriesObj
Parameter | Type | Description |
---|---|---|
| Infrastructure as code status | |
| Secrets scan status | |
| Services scan status | |
| Applications scan status |
CategoryObj
Parameter | Type | Description |
---|---|---|
| string | Possible values: |
| string | Timestamp in RFC 3339 format of the SCA scan status. |
ViolationsObj
Parameter | Type | Description |
---|---|---|
| string | Possible values: |
| string | Timestamp in RFC 3339 format of the SCA scan status. |
Response Codes
Status Code | Description |
---|---|
200 | OK |
400 | Bad request - Mandatory fields are missing |
403 | Permission denied |
404 | Not found |
500 | Internal server error |
Sample Request
{ "name": "my-bundle", "version": "1.1" }
Sample Successful Response
200 OK
{ "overall": { "status": "DONE", "time": "2024-06-24T09:04:35Z" }, "details": { "sca": { "status": "DONE", "time": "2024-06-24T09:04:35Z" }, "contextual_analysis": { "status": "DONE", "time": "2024-06-24T09:04:34Z" }, "violations": { "status": "NOT_SCANNED", "time": "2024-06-24T09:04:35Z" } } }
Sample Error Response
404 Not Found
{ "error": "release bundle name: segevtest release bundle version: 1.5 is not exist in Artifactory" }