Description: Returns the current status of the selected Release Bundle v2 version, including any messages connected to the version.
Since: 7.63.2
Security: Requires Read permissions to the target Release Bundle path.
Usage:GET /lifecycle/api/v2/release_bundle/statuses/{name}/{version}
Query Parameters (optional):
Note
See Common Optional Query Parameters for the query parameters that are available for all Release Lifecycle Management APIs.
Sample Response (without errors):
{
"status": "COMPLETED"
}
Sample Response (with errors, sample payload)
{
"status": "FAILED",
"messages": [
{
"text": "Invalid AQL query for Release Bundle creation"
}
]
}The response includes the following information:
Property | Description |
|---|---|
| Status of the creation: STARTED, FAILED, COMPLETED, DELETING |
| Error messages generated when attempting to create a release bundle. |
Status Codes:
Code | Description |
|---|---|
200 | Fetched |
401 | Bad Credentials |
403 | Permission Denied |
404 | Not Found (Release Bundle/version) |