Get Machine Software (v2.0)
GET/v2.0/api/tenants/:tenant_id/machines/:machine_id/software
List details of all the machine software.
Request
Path Parameters
tenant_id stringrequired
The ID of the tenant.
machine_id stringrequired
The ID of the device.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items MachineSoftware[]
id string
The device software ID.
scheduled_upgrade string
The devices for which software upgrades have been scheduled. The list will display a temporary download completed state and then the scheduled upgrade.
tenant_id stringrequired
ID of the tenant.
upgrade_interval integer
The upgrade interval time limit until an upgrade attempt is performed.
upgrade_version stringrequired
The software version for the upgrade.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"id": "string",
"scheduled_upgrade": "string",
"tenant_id": "string",
"upgrade_interval": 0,
"upgrade_version": "string"
}
]
}
Loading...