Skip to main content
POST
/
api
/
component
/
findComponentEventsByComponent
Retrieve all component events relevant to the specified component
curl --request POST \
  --url https://api2.rhombussystems.com/api/component/findComponentEventsByComponent \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "createdAfterMs": 123,
  "createdBeforeMs": 123,
  "limit": 123,
  "typeFilter": [
    "DoorbellEvent"
  ]
}
'
{
  "componentEvents": [
    {
      "componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "newSupervisionState": "CUT_DETECTED",
      "componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "correlationId": "<string>",
      "createdAtMs": 123,
      "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
      "timestampMs": 123,
      "type": "DoorbellEvent",
      "uuid": "AAAAAAAAAAAAAAAAAAAAAA"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-auth-apikey
string
header
required

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

x-auth-scheme
enum<string>
default:api-token
required

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
componentUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

createdAfterMs
integer<int64> | null
createdBeforeMs
integer<int64> | null
limit
integer<int32> | null
typeFilter
enum<string>[] | null

Limits results to only contain the specified type of events, if applicable

Available options:
DoorbellEvent,
DoorReaderStateChangeEvent,
DoorRelayStateChangeEvent,
DoorPositionIndicatorStateChangeEvent,
RequestToExitStateChangeEvent,
CredentialReceivedEvent,
ButtonEvent,
GenericInputStateChangeEvent,
GenericRelayStateChangeEvent,
AccessControlUnitTamperEvent,
AccessControlUnitLocationLockdownStateEvent,
DoorLocationLockdownStateEvent,
PanicButtonEvent,
AccessControlUnitBatteryStateChangeEvent,
WaveToUnlockIntentExpiredEvent,
DoorStateChangeEvent,
DoorAuthFirstInStateEvent,
DoorScheduleFirstInStateEvent,
AccessControlUnitDoorFirstInStateEvent,
AperioDoorExtensionStateEvent,
AperioActivatorStateEvent,
AperioKeyCylinderStateEvent,
AperioDoorModeEvent,
AperioDoorHandleStateEvent,
AperioGatewayStateEvent,
AperioGatewayConnectionStateChangeEvent,
AperioDtcEvent,
AperioTamperStateEvent

Response

200 - application/json

OK

componentEvents
object[] | null

List of component events for the doorbell camera

Last modified on May 7, 2026