Get next applicable OTA Deployments
GET/v1/ota/next
Fetches list of next applicable OTA releases. Anedya will return most recent update deployed, after last deployment node has atempted. Anedya will return multiple entries for multiple assets.
Please note that if multiple deployments are found with same assetidentifier but different version, system will return deployment created most recently.
Device can choose whether to proceed with the update or skip the update.
Request
Responses
- 200
Returns an array of applicable deployments.
- application/json
- Schema
- Example (from schema)
Schema
success boolean
error string
errcode 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
count integer
{
"success": true,
"error": "string",
"errcode": 0,
"data": {
"deploymentId": "string",
"assetId": "string",
"assetIdentifier": "string",
"assetVersion": "string",
"assetSigned": true,
"assetSignature": "string",
"assetMeta": {},
"assetChecksum": "string",
"assetSize": "string",
"asseturl": "string"
},
"count": 0
}
Loading...