Skip to main content
POST
/
api
/
doorbellcamera
/
findComponentSeekPointsForDoorbellCamera
Retrieve all component seekpoints relevant to the specified Doorbell Camera
curl --request POST \
  --url https://api2.rhombussystems.com/api/doorbellcamera/findComponentSeekPointsForDoorbellCamera \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "doorbellCameraUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "durationSec": 3600,
  "startTimeSecEpochExclusive": 1640995200
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "seekpoints": [
    {
      "activity": "SOUND_LOUD",
      "componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "customActivityColor": "BLUE",
      "customActivityDescription": "<string>",
      "customActivityDisplayName": "<string>",
      "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "originalEvent": {},
      "ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
      "timestampMs": 123,
      "userUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "uuid": "AAAAAAAAAAAAAAAAAAAAAA"
    }
  ],
  "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 retrieving component seekpoints for a doorbell camera.

doorbellCameraUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

durationSec
integer<int32> | null

Duration in seconds for the seekpoint query

Example:

3600

startTimeSecEpochExclusive
integer<int64> | null

Start time in seconds epoch (exclusive) for the seekpoint query

Example:

1640995200

Response

200 - application/json

OK

Response object containing component seekpoints for a doorbell camera.

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

List of component seekpoints for the doorbell camera

warningMsg
string | null