curl --request POST \
--url https://api2.rhombussystems.com/api/event/getPolicyAlertsV2 \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"maxResults": 100
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getPolicyAlertsV2"
payload = {
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"maxResults": 100
}
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({
afterTimestampMs: 1640995200000,
beforeTimestampMs: 1641081600000,
deviceFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
lastTimestampMs: 1640995200000,
lastUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
locationFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
maxResults: 100
})
};
fetch('https://api2.rhombussystems.com/api/event/getPolicyAlertsV2', 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/event/getPolicyAlertsV2")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"afterTimestampMs\": 1640995200000,\n \"beforeTimestampMs\": 1641081600000,\n \"deviceFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"lastTimestampMs\": 1640995200000,\n \"lastUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"locationFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"maxResults\": 100\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"oldestPolicyAlert": {
"airQualityIndex": 123,
"airQualityIndexThreshold": 123,
"alertingDwellEvents": [
{
"deviceLabels": [
"<string>"
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSec": 123,
"dwellStartTimeMs": 123,
"locationLabels": [
"<string>"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"regionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailLocation": "<string>",
"thumbnailUri": "<string>",
"timestampMs": 123,
"trackId": 123
}
],
"alertingEventFaces": [
{
"faceId": "<string>",
"faceName": "<string>",
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"personUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"alertingEventVehicles": [
{
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"licensePlateNumber": "<string>",
"vehicleName": "<string>"
}
],
"alertingTrackIds": [
123
],
"cd": "<string>",
"cdn": "<string>",
"ch2oPpb": 123,
"ch2oPpbThreshold": 123,
"clipLocation": {
"region": "<string>"
},
"cllmBooleanValue": true,
"cllmCheckCondition": {
"value": "<string>"
},
"cllmIntegerValue": 123,
"cllmPromptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 123,
"co2Ppm": 123,
"co2PpmThreshold": 123,
"co2Threshold": 123,
"coConcentration": 123,
"coConcentrationThreshold": 123,
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"egressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"ethanol": 123,
"ethanolThreshold": 123,
"heatIndexDegF": 123,
"heatIndexDegFThreshold": 123,
"humidityPercent1616": 123,
"humidityPercentThreshold1616": 123,
"humidityPermyriad": 123,
"humidityThresholdPermyriad": 123,
"iaq": 123,
"iaqThreshold": 123,
"ingressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"leakDetected": true,
"maxLuf": 123,
"noxIdx": 123,
"noxIdxThreshold": 123,
"numHumans": 123,
"peopleCountHighThreshold": 123,
"peopleCountLowThreshold": 123,
"pm10p0": 123,
"pm10p0Threshold": 123,
"pm1p0": 123,
"pm1p0Threshold": 123,
"pm25": 123,
"pm25Threshold": 123,
"pm4p0": 123,
"pm4p0Threshold": 123,
"pressure": 123,
"pressureThreshold": 123,
"probeTempC": 123,
"probeTempCThreshold": 123,
"probeTempThreshold": 123,
"relHumid": 123,
"relHumidThreshold": 123,
"tamperByMovementChange": 123,
"tampered": true,
"tempC": 123,
"tempCThreshold": 123,
"tempProbePresent": true,
"temperatureCelsius1616": 123,
"temperatureCelsiusThreshold1616": 123,
"temperaturePermyriad": 123,
"temperatureThresholdPermyriad": 123,
"thcPercent": 123,
"thcPercentThreshold": 123,
"tvoc": 123,
"tvocThreshold": 123,
"vapeDetected": true,
"vapeSmokePercent": 123,
"vapeSmokePercentThreshold": 123,
"vocIdx": 123,
"vocIdxThreshold": 123,
"alertMonitoringThreatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"alertMonitoringVerified": true,
"archived": true,
"clipLocationMap": {},
"clipLocationMapV2": {},
"delayedProcessing": true,
"deleted": true,
"durationSec": 123,
"finalized": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"notificationSent": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertTriggers": [],
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"saved": true,
"shared": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"textDescription": "<string>",
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"timestampMs": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"policyAlerts": [
{
"airQualityIndex": 123,
"airQualityIndexThreshold": 123,
"alertingDwellEvents": [
{
"deviceLabels": [
"<string>"
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSec": 123,
"dwellStartTimeMs": 123,
"locationLabels": [
"<string>"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"regionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailLocation": "<string>",
"thumbnailUri": "<string>",
"timestampMs": 123,
"trackId": 123
}
],
"alertingEventFaces": [
{
"faceId": "<string>",
"faceName": "<string>",
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"personUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"alertingEventVehicles": [
{
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"licensePlateNumber": "<string>",
"vehicleName": "<string>"
}
],
"alertingTrackIds": [
123
],
"cd": "<string>",
"cdn": "<string>",
"ch2oPpb": 123,
"ch2oPpbThreshold": 123,
"clipLocation": {
"region": "<string>"
},
"cllmBooleanValue": true,
"cllmCheckCondition": {
"value": "<string>"
},
"cllmIntegerValue": 123,
"cllmPromptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 123,
"co2Ppm": 123,
"co2PpmThreshold": 123,
"co2Threshold": 123,
"coConcentration": 123,
"coConcentrationThreshold": 123,
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"egressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"ethanol": 123,
"ethanolThreshold": 123,
"heatIndexDegF": 123,
"heatIndexDegFThreshold": 123,
"humidityPercent1616": 123,
"humidityPercentThreshold1616": 123,
"humidityPermyriad": 123,
"humidityThresholdPermyriad": 123,
"iaq": 123,
"iaqThreshold": 123,
"ingressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"leakDetected": true,
"maxLuf": 123,
"noxIdx": 123,
"noxIdxThreshold": 123,
"numHumans": 123,
"peopleCountHighThreshold": 123,
"peopleCountLowThreshold": 123,
"pm10p0": 123,
"pm10p0Threshold": 123,
"pm1p0": 123,
"pm1p0Threshold": 123,
"pm25": 123,
"pm25Threshold": 123,
"pm4p0": 123,
"pm4p0Threshold": 123,
"pressure": 123,
"pressureThreshold": 123,
"probeTempC": 123,
"probeTempCThreshold": 123,
"probeTempThreshold": 123,
"relHumid": 123,
"relHumidThreshold": 123,
"tamperByMovementChange": 123,
"tampered": true,
"tempC": 123,
"tempCThreshold": 123,
"tempProbePresent": true,
"temperatureCelsius1616": 123,
"temperatureCelsiusThreshold1616": 123,
"temperaturePermyriad": 123,
"temperatureThresholdPermyriad": 123,
"thcPercent": 123,
"thcPercentThreshold": 123,
"tvoc": 123,
"tvocThreshold": 123,
"vapeDetected": true,
"vapeSmokePercent": 123,
"vapeSmokePercentThreshold": 123,
"vocIdx": 123,
"vocIdxThreshold": 123,
"alertMonitoringThreatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"alertMonitoringVerified": true,
"archived": true,
"clipLocationMap": {},
"clipLocationMapV2": {},
"delayedProcessing": true,
"deleted": true,
"durationSec": 123,
"finalized": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"notificationSent": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertTriggers": [],
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"saved": true,
"shared": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"textDescription": "<string>",
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"timestampMs": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>"
}Get recent policy alerts for organization
Get recent policy alerts for organization
curl --request POST \
--url https://api2.rhombussystems.com/api/event/getPolicyAlertsV2 \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"maxResults": 100
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getPolicyAlertsV2"
payload = {
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"maxResults": 100
}
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({
afterTimestampMs: 1640995200000,
beforeTimestampMs: 1641081600000,
deviceFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
lastTimestampMs: 1640995200000,
lastUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
locationFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
maxResults: 100
})
};
fetch('https://api2.rhombussystems.com/api/event/getPolicyAlertsV2', 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/event/getPolicyAlertsV2")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"afterTimestampMs\": 1640995200000,\n \"beforeTimestampMs\": 1641081600000,\n \"deviceFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"lastTimestampMs\": 1640995200000,\n \"lastUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"locationFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"maxResults\": 100\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"oldestPolicyAlert": {
"airQualityIndex": 123,
"airQualityIndexThreshold": 123,
"alertingDwellEvents": [
{
"deviceLabels": [
"<string>"
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSec": 123,
"dwellStartTimeMs": 123,
"locationLabels": [
"<string>"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"regionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailLocation": "<string>",
"thumbnailUri": "<string>",
"timestampMs": 123,
"trackId": 123
}
],
"alertingEventFaces": [
{
"faceId": "<string>",
"faceName": "<string>",
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"personUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"alertingEventVehicles": [
{
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"licensePlateNumber": "<string>",
"vehicleName": "<string>"
}
],
"alertingTrackIds": [
123
],
"cd": "<string>",
"cdn": "<string>",
"ch2oPpb": 123,
"ch2oPpbThreshold": 123,
"clipLocation": {
"region": "<string>"
},
"cllmBooleanValue": true,
"cllmCheckCondition": {
"value": "<string>"
},
"cllmIntegerValue": 123,
"cllmPromptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 123,
"co2Ppm": 123,
"co2PpmThreshold": 123,
"co2Threshold": 123,
"coConcentration": 123,
"coConcentrationThreshold": 123,
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"egressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"ethanol": 123,
"ethanolThreshold": 123,
"heatIndexDegF": 123,
"heatIndexDegFThreshold": 123,
"humidityPercent1616": 123,
"humidityPercentThreshold1616": 123,
"humidityPermyriad": 123,
"humidityThresholdPermyriad": 123,
"iaq": 123,
"iaqThreshold": 123,
"ingressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"leakDetected": true,
"maxLuf": 123,
"noxIdx": 123,
"noxIdxThreshold": 123,
"numHumans": 123,
"peopleCountHighThreshold": 123,
"peopleCountLowThreshold": 123,
"pm10p0": 123,
"pm10p0Threshold": 123,
"pm1p0": 123,
"pm1p0Threshold": 123,
"pm25": 123,
"pm25Threshold": 123,
"pm4p0": 123,
"pm4p0Threshold": 123,
"pressure": 123,
"pressureThreshold": 123,
"probeTempC": 123,
"probeTempCThreshold": 123,
"probeTempThreshold": 123,
"relHumid": 123,
"relHumidThreshold": 123,
"tamperByMovementChange": 123,
"tampered": true,
"tempC": 123,
"tempCThreshold": 123,
"tempProbePresent": true,
"temperatureCelsius1616": 123,
"temperatureCelsiusThreshold1616": 123,
"temperaturePermyriad": 123,
"temperatureThresholdPermyriad": 123,
"thcPercent": 123,
"thcPercentThreshold": 123,
"tvoc": 123,
"tvocThreshold": 123,
"vapeDetected": true,
"vapeSmokePercent": 123,
"vapeSmokePercentThreshold": 123,
"vocIdx": 123,
"vocIdxThreshold": 123,
"alertMonitoringThreatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"alertMonitoringVerified": true,
"archived": true,
"clipLocationMap": {},
"clipLocationMapV2": {},
"delayedProcessing": true,
"deleted": true,
"durationSec": 123,
"finalized": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"notificationSent": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertTriggers": [],
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"saved": true,
"shared": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"textDescription": "<string>",
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"timestampMs": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"policyAlerts": [
{
"airQualityIndex": 123,
"airQualityIndexThreshold": 123,
"alertingDwellEvents": [
{
"deviceLabels": [
"<string>"
],
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSec": 123,
"dwellStartTimeMs": 123,
"locationLabels": [
"<string>"
],
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"regionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailLocation": "<string>",
"thumbnailUri": "<string>",
"timestampMs": 123,
"trackId": 123
}
],
"alertingEventFaces": [
{
"faceId": "<string>",
"faceName": "<string>",
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"personUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"alertingEventVehicles": [
{
"imageS3Bucket": "<string>",
"imageS3Key": "<string>",
"imageS3Region": "<string>",
"labels": [
"<string>"
],
"licensePlateNumber": "<string>",
"vehicleName": "<string>"
}
],
"alertingTrackIds": [
123
],
"cd": "<string>",
"cdn": "<string>",
"ch2oPpb": 123,
"ch2oPpbThreshold": 123,
"clipLocation": {
"region": "<string>"
},
"cllmBooleanValue": true,
"cllmCheckCondition": {
"value": "<string>"
},
"cllmIntegerValue": 123,
"cllmPromptUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"co2": 123,
"co2Ppm": 123,
"co2PpmThreshold": 123,
"co2Threshold": 123,
"coConcentration": 123,
"coConcentrationThreshold": 123,
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"egressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"ethanol": 123,
"ethanolThreshold": 123,
"heatIndexDegF": 123,
"heatIndexDegFThreshold": 123,
"humidityPercent1616": 123,
"humidityPercentThreshold1616": 123,
"humidityPermyriad": 123,
"humidityThresholdPermyriad": 123,
"iaq": 123,
"iaqThreshold": 123,
"ingressBoundaryDevices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"leakDetected": true,
"maxLuf": 123,
"noxIdx": 123,
"noxIdxThreshold": 123,
"numHumans": 123,
"peopleCountHighThreshold": 123,
"peopleCountLowThreshold": 123,
"pm10p0": 123,
"pm10p0Threshold": 123,
"pm1p0": 123,
"pm1p0Threshold": 123,
"pm25": 123,
"pm25Threshold": 123,
"pm4p0": 123,
"pm4p0Threshold": 123,
"pressure": 123,
"pressureThreshold": 123,
"probeTempC": 123,
"probeTempCThreshold": 123,
"probeTempThreshold": 123,
"relHumid": 123,
"relHumidThreshold": 123,
"tamperByMovementChange": 123,
"tampered": true,
"tempC": 123,
"tempCThreshold": 123,
"tempProbePresent": true,
"temperatureCelsius1616": 123,
"temperatureCelsiusThreshold1616": 123,
"temperaturePermyriad": 123,
"temperatureThresholdPermyriad": 123,
"thcPercent": 123,
"thcPercentThreshold": 123,
"tvoc": 123,
"tvocThreshold": 123,
"vapeDetected": true,
"vapeSmokePercent": 123,
"vapeSmokePercentThreshold": 123,
"vocIdx": 123,
"vocIdxThreshold": 123,
"alertMonitoringThreatCaseUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"alertMonitoringVerified": true,
"archived": true,
"clipLocationMap": {},
"clipLocationMapV2": {},
"delayedProcessing": true,
"deleted": true,
"durationSec": 123,
"finalized": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"notificationSent": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertTriggers": [],
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ruleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"saved": true,
"shared": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"textDescription": "<string>",
"thumbnailLocation": {
"region": "<string>"
},
"thumbnailLocationV2": "<string>",
"timestampMs": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>"
}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.
api-token, api, partner-api-token, partner-api Body
Request object for retrieving policy alerts V2 with filtering and pagination options.
Filter for alerts after this timestamp
1640995200000
Filter for alerts before this timestamp
1641081600000
List of device UUIDs to filter by
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Last timestamp for pagination
1640995200000
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
List of location UUIDs to filter by
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Maximum number of results to return
100
Response
OK
Response object containing policy alerts V2 with filtering and pagination options.
Was this page helpful?