|  Developer
Updated on June 16, 2022

hub.bridge.connections.list

Connection type:

  • Get information about other controllers with explicitly specified addresses, or directly connected via MDNS detected address
Edit
Edit
Field Type Required Description
controllers array of objects + Information about other controllers with explicitly specified addresses, or connected via MDNS detected address
controllers[idx]._id string + UUID of controller
controllers[idx].serial string + Serial of controller as specified by cloud.access_keys_controller_sync
controllers[idx].ip array of strings + Array of explicitly specified IP addresses of controller
controllers[idx].status enum + not_connected or direct_connection
Edit
Edit
				
					{
    "id": "_ID_",
    "jsonrpc": "2.0",
    "api":"1.0",
    "method": "hub.bridge.connections.list",
    "params": {}
}				
			
Edit
				
					{
    "error": null,
    "method": "hub.bridge.connections.list",
    "id": "_ID_",
    "result": {
        "controllers": [
            {
                   "_id": "6fc13be5-19e4-4bdc-b593-7cd86869ea32",
                   "serial": "25698542",
                   "ip": [ "192.168.0.1", "192.168.10.110" ],
                   "status": "direct_connection"
            }
        ]
    }
}