Get Ongoing OTA Deployments
POST/v1/ota/current
Lists ongoing OTA Deployments, for which device has specified status atleast once.
This does not list deployments with status: skipped
, aborted
, success
and failure
.
Apart from that any status is considered as "in Progress"
Request
- application/json
Body
reqId string
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
success boolean
error string
errcode integer
count integer
data object[]
deploymentId string
assetId string
assetIdentifier string
assetVersion string
assetSigned boolean
assetSignature string
assetMeta object
property name* string
assetChecksum string
assetSize string
asseturl string
status string
{
"success": true,
"error": "string",
"errcode": 0,
"count": 0,
"data": [
{
"deploymentId": "string",
"assetId": "string",
"assetIdentifier": "string",
"assetVersion": "string",
"assetSigned": true,
"assetSignature": "string",
"assetMeta": {},
"assetChecksum": "string",
"assetSize": "string",
"asseturl": "string",
"status": "string"
}
]
}
Loading...