|  Developer
Updated on January 3, 2023

hub.features.list

Connection type:

  • Ask controller to send list of supported software features
Edit

Edit
Field Type Required Description
features object + Software features
features.{key} key + Feature name
features.{key}.status string + Feature status
features.{key}.version string + Feature version
Edit
Edit
				
					{
    "method": "hub.features.list",
    "id": "_ID_",
    "params": {}
}				
			
Edit
				
					{
    "error": null,
    "id": "_ID_",
    "method": "hub.features.list",
    "result": {
        "features": {
            "advanced_scenes": {
                "status": "on",
                "version": "1.0"
            },
            "cameras": {
                "status": "on",
                "version": "1.0"
            },
            "cloud_devices": {
                "status": "on",
                "version": "1.0"
            },
            "device_settings": {
                "status": "on",
                "version": "1.0"
            },
            "local_mode": {
                "status": "on",
                "version": "1.0"
            },
            "protect": {
                "status": "off",
                "version": "2.0"
            },
            "webrtc": {
                "status": "on",
                "version": "1.0"
            },
            "protect_delayed": {
                "status": "on",
                "version": "1.0"
            }
        }
    }
}				
			
Edit