🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/getFootageBoundingBoxes \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"duration": 3600,
"startTime": 1640995200
}
'{
"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>"
}Get object bounding boxes for a specified 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
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/getFootageBoundingBoxes \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"duration": 3600,
"startTime": 1640995200
}
'{
"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>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to retrieve footage bounding boxes for a camera within a time range.
Was this page helpful?