Get release status by catalog ID
GET/api/v2/device/releases/:catalog_id
Retrieves the installation status for a specific software release on the root device. Returns delivery progress, deployment status, and current installation state. Only accessible for components in delivery state or beyond.
Request
Path Parameters
Catalog ID of the release
Responses
- 200
- 404
- 500
- application/json
- Schema
- Example (from schema)
Schema
- DeliveryStatusEnum
- DeploymentStatus
Artifacts folder path
deviceReleaseStatus
object
nullable
Status enum that can be either a delivery status or a deployment status
oneOf
string
string
Download duration in seconds (for delivery state)
Error message if any error occurred
Estimated time remaining in seconds
Progress percentage (0-100)
release
object
required
Human-readable display name of the project
Label associated with the project
Policies associated with this release
Possible values: [draft, in_review, approved, released, archived]
Possible values: [product, formation]
Possible values: [delivery, downloaded, deleted, deploy, installed, uninstalled]
Represents the state of a release on the device Only covers delivery state and beyond — Offering/Push are not exposed on this endpoint
{
"artsDirPath": "string",
"deliveryState": "prepare",
"deviceReleaseStatus": "Start",
"downloadDuration": 0,
"errMsg": "string",
"eta": 0,
"progress": 0,
"release": {
"createdAt": "2026-04-22T16:58:12.269Z",
"dependencies": [
null
],
"displayName": "string",
"id": "string",
"label": "string",
"latest": true,
"metadata": {},
"policies": [
null
],
"projectId": 0,
"projectName": "string",
"releaseNotes": "string",
"releasedAt": "2026-04-22T16:58:12.270Z",
"size": 0,
"status": "draft",
"type": "product",
"updatedAt": "2026-04-22T16:58:12.270Z",
"version": "string"
},
"state": "delivery"
}
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "string",
"name": "string",
"statusCode": 0
}
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "string",
"name": "string",
"statusCode": 0
}