Get latest rules event records
curl --request POST \
--url https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"associatedUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"n": 10,
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords"
payload = {
"associatedUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"n": 10,
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
associatedUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
n: 10,
ruleUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"associatedUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"n\": 10,\n \"ruleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"rulesEventRecords": [
{
"activatedLocationLockdownRecord": {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"succeeded": true
},
"alertActionRecord": {
"policyAlertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"status": "SUCCESS"
},
"alertMonitoringEventRecords": [
{
"alertMonitoringEventType": "ALARM_CREATED",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"threatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123
}
],
"audioPlaybackActionRecords": [
{
"audioClipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"audioGatewayStatuses": {}
}
],
"cancelLoopingAudioPlaybackActionRecordType": {
"statusMap": {}
},
"changeComponentCompositeAccessStateRecords": [
{
"accessState": "UNLOCKED",
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"madeChange": true,
"succeeded": true,
"usedFirstIn": true,
"willExpireAtMs": 123
}
],
"createAlarmRecord": {
"alarmId": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"outcome": "<string>",
"succeeded": true,
"threatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"deviceEventRecords": [
{
"activities": [
"SOUND_LOUD"
],
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceType": "BLE_TRACKER",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"eventUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"hardwareVariation": "RASPBERRY_PI_3",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123
}
],
"enableDisableAudioRecordActionRecords": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enable": true,
"succeeded": true
}
],
"integrationActionStatuses": {},
"liveNotificationActionRecord": {
"status": "SUCCESS"
},
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledEventRecords": [
{
"timestampMs": 123
}
],
"triggerComponentRelayRecords": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"outputType": "TRANSIENT",
"overrideRelayDurationMs": 123,
"overrideRelayDurationSec": 123,
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "ACTIVE",
"succeeded": true
}
],
"triggeredTimestampMs": 123,
"unlockDoorActionRecords": [
{
"doorId": "<string>",
"placeId": "<string>",
"succeeded": true,
"system": "<string>"
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"visionLLMEventRecords": [
{
"deviceFacetUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"fullResponse": "<string>",
"parsedAffirmativeResponse": true,
"timestampMs": 123,
"userPrompt": "<string>"
}
],
"webhookActionStatuses": {}
}
]
}Rules Records Webservice
Get latest rules event records
Get N latest rules event historical records
POST
/
api
/
rulesRecords
/
getLatestRulesEventRecords
Get latest rules event records
curl --request POST \
--url https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"associatedUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"n": 10,
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords"
payload = {
"associatedUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"n": 10,
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
associatedUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
n: 10,
ruleUuid: 'AAAAAAAAAAAAAAAAAAAAAA'
})
};
fetch('https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/rulesRecords/getLatestRulesEventRecords")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"associatedUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"n\": 10,\n \"ruleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"rulesEventRecords": [
{
"activatedLocationLockdownRecord": {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"succeeded": true
},
"alertActionRecord": {
"policyAlertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"status": "SUCCESS"
},
"alertMonitoringEventRecords": [
{
"alertMonitoringEventType": "ALARM_CREATED",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"threatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123
}
],
"audioPlaybackActionRecords": [
{
"audioClipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"audioGatewayStatuses": {}
}
],
"cancelLoopingAudioPlaybackActionRecordType": {
"statusMap": {}
},
"changeComponentCompositeAccessStateRecords": [
{
"accessState": "UNLOCKED",
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"madeChange": true,
"succeeded": true,
"usedFirstIn": true,
"willExpireAtMs": 123
}
],
"createAlarmRecord": {
"alarmId": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"outcome": "<string>",
"succeeded": true,
"threatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"deviceEventRecords": [
{
"activities": [
"SOUND_LOUD"
],
"componentCompositeUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceType": "BLE_TRACKER",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"eventUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"hardwareVariation": "RASPBERRY_PI_3",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"timestampMs": 123
}
],
"enableDisableAudioRecordActionRecords": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"enable": true,
"succeeded": true
}
],
"integrationActionStatuses": {},
"liveNotificationActionRecord": {
"status": "SUCCESS"
},
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledEventRecords": [
{
"timestampMs": 123
}
],
"triggerComponentRelayRecords": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"outputType": "TRANSIENT",
"overrideRelayDurationMs": 123,
"overrideRelayDurationSec": 123,
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "ACTIVE",
"succeeded": true
}
],
"triggeredTimestampMs": 123,
"unlockDoorActionRecords": [
{
"doorId": "<string>",
"placeId": "<string>",
"succeeded": true,
"system": "<string>"
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"visionLLMEventRecords": [
{
"deviceFacetUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"fullResponse": "<string>",
"parsedAffirmativeResponse": true,
"timestampMs": 123,
"userPrompt": "<string>"
}
],
"webhookActionStatuses": {}
}
]
}Authorizations
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
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
Request object for getting latest rules event records.
List of associated UUIDs to filter by
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Number of latest records to retrieve
Example:
10
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Response
200 - application/json
OK
Response object for getting latest rules event records.
List of latest rules event records
Show child attributes
Show child attributes
Last modified on August 21, 2026
⌘I