Get Releases
GET/api/v1/catalog/releases/project/:projectIdentifier
This service message allows retrieval of releases.
Request
Path Parameters
Project identifier (ID or name)
Header Parameters
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
metadata
object
Enable automatic deployment of this release
postInstallAction
object
Post-installation action configuration
Possible values: [NONE, WEB, EXE]
Action type: NONE (no action), WEB (open URL), or EXE (run executable)
URL to open (required when type is WEB)
Executable path to run (required when type is EXE)
Installation size in bytes - disk space required after installation (user-specified)
Total size in bytes - automatically calculated as installationSize + artifactsSize
Possible values: [draft, in_review, approved, released, archived]
Total number of required regulations
Total number of compliant regulations
Indicates if this release was imported from another system
Indicates if this release is read-only (imported releases that are released)
[
{
"id": "string",
"version": "string",
"projectName": "string",
"projectId": 0,
"name": "string",
"releaseNotes": "string",
"metadata": {
"autoDeploy": true,
"postInstallAction": {
"type": "NONE",
"url": "string",
"exePath": "string"
},
"installationSize": 0,
"totalSize": 0
},
"status": "draft",
"createdAt": "2026-03-12T11:20:53.948Z",
"updatedAt": "2026-03-12T11:20:53.948Z",
"requiredRegulationsCount": 0,
"compliantRegulationsCount": 0,
"latest": true,
"releasedAt": "2026-03-12T11:20:53.948Z",
"createdBy": "string",
"updatedBy": "string",
"isImported": true,
"readonly": true
}
]