Edit

Get actions for sysupgrading firmware to latest available version

Edit
				
					{
    "method": "hub.software.update.plan",
    "id": "_ID_",
    "params": {
        "operation": "sysupgrade",
        "type": "firmware",
        "snapshot": -1
    }
}				
			
Edit
				
					{
    "error": null,
    "id": "_ID_",
    "result": {}
}				
			
Edit

Get actions for update firmware to latest version on DEV environment

Edit
				
					{
    "method": "hub.software.update.plan",
    "id": "_ID_",
    "params": {
        "operation": "sysupgrade",
        "type": "firmware",
        "source": "http://dl.mios.com/linux_firmware/dev",
        "snapshot": -1
    }
}				
			
Edit
				
					{
    "error": null,
    "id": "_ID_",
    "result": {}
}				
			
Edit

Get actions for installing current (not latest) version of zigbee addon

Edit
				
					{
    "method": "hub.software.update.plan",
    "id": "_ID_",
    "params": {
        "operation": "install",
        "type": "addon",
        "id": "zigbee"
    }
}				
			
Edit
				
					{
    "error": null,
    "id": "_ID_",
    "result": {}
}				
			
Edit

Get actions for uninstalling zwave plugin

Edit
				
					{
    "method": "hub.software.update.plan",
    "id": "_ID_",
    "params": {
        "operation": "uninstall",
        "type": "plugin",
        "id": "zwave"
    }
}				
			
Edit
				
					{
    "error": null,
    "id": "_ID_",
    "result": {}
}