Available Firmware
The API is used to fetch all the available firmware versions for the specified platform.
API Calls
/V5/devices/manageddevices/availablefirmwares
JSON Table
Attribute | Data Type | Description |
---|---|---|
<platformid> | int | System generated integer value to identify platform. |
<platformid>/version | application/json | |
<platformid>/version/version | int | |
<platformid>/version/vendorVersionId | int | |
<platformid>/version/versionDisplayString | int | |
<platformid>/local | boolean | |
<platformid>/latest | boolean | |
<platformid>/blacklisted | boolean | |
<platformid>/external | boolean |
Sample JSON
{ "11": [ { "version": { "version": "8.2.1-907", "vendorVersionId": 11, "versionDisplayString": "8.2.1-907.11" }, "local": true, "latest": true, "blacklisted": false, "external": true }, { "version": { "version": "8.2.1-904", "vendorVersionId": 6, "versionDisplayString": "8.2.1-904.6" }, "local": true, "latest": false, "blacklisted": false, "external": true }, { "version": { "version": "8.2.1-903", "vendorVersionId": 1, "versionDisplayString": "8.2.1-903.1" }, "local": true, "latest": false, "blacklisted": false, "external": true } ] }