Skip to main content
POST
/
api
/
sensors
/
getFootageSensorSeekpointsForCamera
Get sensor activity seekpoints for camera
curl --request POST \
  --url https://api2.rhombussystems.com/api/sensors/getFootageSensorSeekpointsForCamera \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "cameraUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "durationSec": 3600,
  "startTimeSec": 1640995200
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "seekPoints": [
    {
      "a": "SOUND_LOUD",
      "ts": 123,
      "al": true,
      "cd": "<string>",
      "cdn": "<string>",
      "co2": 123,
      "cu": [
        "AAAAAAAAAAAAAAAAAAAAAA.v0"
      ],
      "ethanol": 123,
      "h": 123,
      "heatIndexDegF": 123,
      "hp": 123,
      "iaq": 123,
      "lu": "AAAAAAAAAAAAAAAAAAAAAA",
      "pm25": 123,
      "probeTempC": 123,
      "sn": "Motion Sensor 1",
      "su": "AAAAAAAAAAAAAAAAAAAAAA",
      "subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
      "t": 123,
      "tc": 123,
      "thcPercent": 123,
      "tvoc": 123,
      "vapeSmokePercent": 123
    }
  ],
  "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 object for getting sensor seekpoints for a camera.

cameraUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

durationSec
integer<int32> | null

Duration in seconds for the query period

Example:

3600

startTimeSec
integer<int64> | null

Start time in seconds for the query period

Example:

1640995200

Response

200 - application/json

OK

Response object for getting sensor seekpoints for a camera.

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

List of sensor seekpoints for the camera

warningMsg
string | null