Get detailed information about state of specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getFullState \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"force": true
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getFullState"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"force": True
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', force: true})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getFullState', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/doorbellcamera/getFullState")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"force\": true\n}")
.asString();{
"fullState": {
"afSupport": true,
"audioSupported": true,
"baseVideoOperationUri": "<string>",
"connectionStatus": "RED",
"connectionTimestampMs": 123,
"createdAtMillis": 123,
"defaultInterface": "<string>",
"defaultInterfaceMac": "<string>",
"directionRadians": 123,
"externalIPAddress": "<string>",
"facetNameMap": {},
"firmwareUpdateInProgress": true,
"firmwareVersion": "<string>",
"floorNumber": 123,
"healthStatus": "RED",
"healthStatusDetails": "DISCONNECTED",
"hwVariation": "RASPBERRY_PI_3",
"lanAddresses": [
"<string>"
],
"latestFirmwareVersion": "<string>",
"latitude": 123,
"liveStreamShared": true,
"liveStreamsSharedCount": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"maxZoomPercent": 123,
"mediaRegion": "<string>",
"mediaStorageDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"mummified": true,
"name": "<string>",
"onCameraState": {},
"onCloudState": {},
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"region": "<string>",
"secondaryLanAddresses": [
"<string>"
],
"serialNumber": "<string>",
"ssid": "<string>",
"stateUpdatedTimestampMs": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"supportedFacets": [
"v0, a0"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"versionsBehind": 123,
"wifiApMac": "<string>",
"wifiBars": 123,
"wifiSignalStrength": 123
}
}Doorbell Camera Webservice
Get detailed information about state of specified doorbell camera
Get detailed information about state of specified doorbell camera
POST
/
api
/
doorbellcamera
/
getFullState
Get detailed information about state of specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getFullState \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"force": true
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getFullState"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"force": True
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', force: true})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getFullState', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/doorbellcamera/getFullState")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"force\": true\n}")
.asString();{
"fullState": {
"afSupport": true,
"audioSupported": true,
"baseVideoOperationUri": "<string>",
"connectionStatus": "RED",
"connectionTimestampMs": 123,
"createdAtMillis": 123,
"defaultInterface": "<string>",
"defaultInterfaceMac": "<string>",
"directionRadians": 123,
"externalIPAddress": "<string>",
"facetNameMap": {},
"firmwareUpdateInProgress": true,
"firmwareVersion": "<string>",
"floorNumber": 123,
"healthStatus": "RED",
"healthStatusDetails": "DISCONNECTED",
"hwVariation": "RASPBERRY_PI_3",
"lanAddresses": [
"<string>"
],
"latestFirmwareVersion": "<string>",
"latitude": 123,
"liveStreamShared": true,
"liveStreamsSharedCount": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"maxZoomPercent": 123,
"mediaRegion": "<string>",
"mediaStorageDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"mummified": true,
"name": "<string>",
"onCameraState": {},
"onCloudState": {},
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"region": "<string>",
"secondaryLanAddresses": [
"<string>"
],
"serialNumber": "<string>",
"ssid": "<string>",
"stateUpdatedTimestampMs": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"supportedFacets": [
"v0, a0"
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"versionsBehind": 123,
"wifiApMac": "<string>",
"wifiBars": 123,
"wifiSignalStrength": 123
}
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Response
200 - application/json
OK
Response object containing detailed state information for a doorbell camera.
Detailed state information for the specified NVR
Show child attributes
Show child attributes
Last modified on September 18, 2026