Description: Returns the current status of the selected Release Bundle 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): repository_key
, project
. See Common Optional Query Parameters.
Sample Response (without errors):
{ "status": "COMPLETED" }
Sample Response (with errors, sample payload)
{ "status": "FAILED", "messages": [ { "source": "System", "text": "Invalid AQL query for Release Bundle creation", "created": "2023-05-18T11:40:51.848Z" } ] }
The response includes the following information:
Property | Description |
---|---|
| Status of the creation: PROCESSING, 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) |