🚧 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/component/findPaginatedComponentEventsByAccessControlledDoor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"createdAfterMs": 123,
"createdBeforeMs": 123,
"lastEvaluatedKey": "<string>",
"maxPageSize": 123,
"reverseSearch": true,
"typeFilter": [
"DoorbellEvent"
],
"userFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
'{
"componentEvents": [
{
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"newSupervisionState": "CUT_DETECTED",
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"correlationId": "<string>",
"createdAtMs": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123,
"type": "DoorbellEvent",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"warningMsg": "<string>"
}Retrieve all component events relevant to the specified AccessControlledDoor
curl --request POST \
--url https://api2.rhombussystems.com/api/component/findPaginatedComponentEventsByAccessControlledDoor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"createdAfterMs": 123,
"createdBeforeMs": 123,
"lastEvaluatedKey": "<string>",
"maxPageSize": 123,
"reverseSearch": true,
"typeFilter": [
"DoorbellEvent"
],
"userFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
'{
"componentEvents": [
{
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"newSupervisionState": "CUT_DETECTED",
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"correlationId": "<string>",
"createdAtMs": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123,
"type": "DoorbellEvent",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"warningMsg": "<string>"
}Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
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.
api-token, api, partner-api-token, partner-api base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Limits results to only contain the specified type of events, if applicable
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 base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
OK
Request object for getting list of component events for the specified door with pagination support.
List of component events for the doorbell camera
Show child attributes
Was this page helpful?