Get object bounding boxes for a specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"startTimeSec": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"startTimeSec": 123
}
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', durationSecs: 123, startTimeSec: 123})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes', 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/getBoundingBoxes")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"durationSecs\": 123,\n \"startTimeSec\": 123\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageBoundingBoxes": [
{
"a": "SOUND_LOUD",
"b": 123,
"l": 123,
"r": 123,
"t": 123,
"ts": 123,
"al": true,
"c": 123,
"cd": "<string>",
"cdn": "<string>",
"croppedImageLocator": "<string>",
"customActivityColor": "BLUE",
"dw": true,
"fn": "<string>",
"kp": {},
"loudness": 123,
"lp": "<string>",
"m": true,
"objectId": 123,
"p": "<string>",
"reid": 123,
"ro": [
"<string>"
],
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"uf": "<string>",
"vn": "<string>"
}
],
"warningMsg": "<string>"
}Doorbell Camera Webservice
Get object bounding boxes for a specified doorbell camera
Get object bounding boxes for a specified doorbell camera. Note: bounding box values are given as permyriad shorts relative to image. To convert to absolute pixel values, use the following: abs_pix = (rel_permyriad / 10000) * image_dim
POST
/
api
/
doorbellcamera
/
getBoundingBoxes
Get object bounding boxes for a specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"startTimeSec": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"startTimeSec": 123
}
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', durationSecs: 123, startTimeSec: 123})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getBoundingBoxes', 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/getBoundingBoxes")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"durationSecs\": 123,\n \"startTimeSec\": 123\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageBoundingBoxes": [
{
"a": "SOUND_LOUD",
"b": 123,
"l": 123,
"r": 123,
"t": 123,
"ts": 123,
"al": true,
"c": 123,
"cd": "<string>",
"cdn": "<string>",
"croppedImageLocator": "<string>",
"customActivityColor": "BLUE",
"dw": true,
"fn": "<string>",
"kp": {},
"loudness": 123,
"lp": "<string>",
"m": true,
"objectId": 123,
"p": "<string>",
"reid": 123,
"ro": [
"<string>"
],
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"toastOrderIdInfo": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"uf": "<string>",
"vn": "<string>"
}
],
"warningMsg": "<string>"
}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
Last modified on September 18, 2026