Get Deployment Report
GET/api/v1/catalog/releases/project/:projectIdentifier/version/:version/deployment-report
Generates a comprehensive deployment report for a specific release, including download stats, installation counts, active delivery processes, and deployment percentage.
Request
Path Parameters
Project identifier (ID or name)
Header Parameters
Responses
- 200
Deployment report with analytics
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Project ID
Release name
Release version
Number of devices that have downloaded the release
Number of devices with the release installed
Total number of devices with ongoing delivery process (includes devices waiting for download and mid-deployment)
Number of devices that are pending (not downloaded or still downloading)
Deployment percentage calculated as (installedCount / activeDeliveryCount) * 100
devices
object[]
required
List of devices with their deployment statuses
Device ID
Device name
Delivery status (e.g., DONE, PENDING, IN_PROGRESS)
Deploy/Installation status (e.g., DONE, PENDING, IN_PROGRESS)
Download completion timestamp
Installation completion timestamp
{
"projectId": 0,
"releaseName": "string",
"version": "string",
"downloadedCount": 0,
"installedCount": 0,
"total": 0,
"pending": 0,
"deploymentPercentage": 0,
"devices": [
{
"deviceId": "string",
"deviceName": "string",
"deliveryStatus": "string",
"deployStatus": "string",
"downloadTime": "2026-03-12T11:20:53.966Z",
"installationTime": "2026-03-12T11:20:53.966Z"
}
]
}