Skip to main content
POST
/
api
/
camera
/
getFootageBoundingBoxes
Get footage bounding boxes
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",
      "fn": "<string>",
      "kp": {},
      "loudness": 123,
      "lp": "<string>",
      "m": true,
      "objectId": 123,
      "p": "<string>",
      "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

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request to retrieve footage bounding boxes for a camera within a time range.

cameraUuid
string<DeviceFacetUuid> | null

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

duration
integer<int32> | null

Duration in seconds

Example:

3600

startTime
integer<int64> | null

Start time in seconds since epoch

Example:

1640995200

Response

200 - application/json

OK

Response containing footage bounding boxes for a camera.

error
boolean | null
errorMsg
string | null
footageBoundingBoxes
object[] | null

List of footage bounding boxes

warningMsg
string | null