Get deploy status across CDN-connected devices
GET/api/cdn/deploy/:catalog_id
Returns deploy status per CDN-connected device for the given catalog_id.
Request
Path Parameters
catalog_id stringrequired
Query Parameters
device_id string[]
Repeated device ID filter: ?device_id=id1&device_id=id2. Omit for all devices.
Responses
- 200
- 501
Deploy status per device.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object
required
catalogId stringrequired
completedAt date-timenullable
currentTime date-timenullable
deviceId stringrequired
eta int64nullable
messageLog stringnullable
progress int32nullable
requestedStatus object
startedAt date-timenullable
status object
stoppedAt date-timenullable
type ItemTyperequired
Possible values: [software, map, cache]
deviceId stringrequired
Device identifier — matches the deviceId in CDN discovery.
isMaster booleanrequired
true when this entry represents the local CDN master agent itself.
[
{
"data": {
"catalogId": "string",
"completedAt": "2026-04-22T16:58:12.451Z",
"currentTime": "2026-04-22T16:58:12.451Z",
"deviceId": "string",
"eta": 0,
"messageLog": "string",
"progress": 0,
"requestedStatus": "Start",
"startedAt": "2026-04-22T16:58:12.451Z",
"status": "Start",
"stoppedAt": "2026-04-22T16:58:12.451Z",
"type": "software"
},
"deviceId": "string",
"isMaster": true
}
]
Not implemented
Loading...