Get activity seekpoints for specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"includeAnyMotion": true,
"startTimeSec": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"includeAnyMotion": True,
"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,
includeAnyMotion: true,
startTimeSec: 123
})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints', 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/getSeekpoints")
.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 \"includeAnyMotion\": true,\n \"startTimeSec\": 123\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageSeekPoints": [
{
"a": "SOUND_LOUD",
"ts": 123,
"ae": "<string>",
"al": true,
"ax": "<string>",
"bs": "<string>",
"bt": "<string>",
"cc": "BLUE",
"cd": "<string>",
"cdn": "<string>",
"ch": "<string>",
"dcao": true,
"dwelling": true,
"em": true,
"fn": "<string>",
"id": 123,
"loudness": 123,
"lp": "<string>",
"m": true,
"p": "<string>",
"ro": [
"<string>"
],
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toi": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"tu": "<string>",
"uf": "<string>",
"vn": "<string>"
}
],
"warningMsg": "<string>"
}Doorbell Camera Webservice
Get activity seekpoints for specified doorbell camera
Get activity seekpoints for specified doorbell camera
POST
/
api
/
doorbellcamera
/
getSeekpoints
Get activity seekpoints for specified doorbell camera
curl --request POST \
--url https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"includeAnyMotion": true,
"startTimeSec": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"durationSecs": 123,
"includeAnyMotion": True,
"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,
includeAnyMotion: true,
startTimeSec: 123
})
};
fetch('https://api2.rhombussystems.com/api/doorbellcamera/getSeekpoints', 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/getSeekpoints")
.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 \"includeAnyMotion\": true,\n \"startTimeSec\": 123\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"footageSeekPoints": [
{
"a": "SOUND_LOUD",
"ts": 123,
"ae": "<string>",
"al": true,
"ax": "<string>",
"bs": "<string>",
"bt": "<string>",
"cc": "BLUE",
"cd": "<string>",
"cdn": "<string>",
"ch": "<string>",
"dcao": true,
"dwelling": true,
"em": true,
"fn": "<string>",
"id": 123,
"loudness": 123,
"lp": "<string>",
"m": true,
"p": "<string>",
"ro": [
"<string>"
],
"sensorValType": {
"sensorBoolean": true,
"sensorDouble": 123,
"sensorLong": 123
},
"stableTrackId": 123,
"toi": {
"employeeName": "<string>",
"guid": "<string>",
"locationName": "<string>",
"restaurantName": "<string>",
"toastCheckInfo": {
"totalAmount": 123
}
},
"tu": "<string>",
"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