curl --request POST \
--url https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases \
--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"
],
"lastEvaluatedKey": "<string>",
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"maxPageSize": 123,
"maxResults": 100,
"mostRecent": true,
"statusFilter": []
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases"
payload = {
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"lastEvaluatedKey": "<string>",
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"maxPageSize": 123,
"maxResults": 100,
"mostRecent": True,
"statusFilter": []
}
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'],
lastEvaluatedKey: '<string>',
lastTimestampMs: 1640995200000,
lastUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
locationFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
maxPageSize: 123,
maxResults: 100,
mostRecent: true,
statusFilter: []
})
};
fetch('https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases', 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/getAlertMonitoringThreatCases")
.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 \"lastEvaluatedKey\": \"<string>\",\n \"lastTimestampMs\": 1640995200000,\n \"lastUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"locationFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"maxPageSize\": 123,\n \"maxResults\": 100,\n \"mostRecent\": true,\n \"statusFilter\": []\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"threatCases": [
{
"alertGroupingKeys": {},
"alertGroupingStrategy": "ALARM_RULES",
"associatedDeviceUuids": {},
"createdAtMillis": 123,
"deleted": true,
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationName": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"noonlightAlarmId": "<string>",
"noonlightVerificationId": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertComponentCompositeUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"policyAlertDeviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"policyAlertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"promptTheme": "THREAT",
"promptTitle": "<string>",
"sharedClipGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sirenSettings": {
"audioGateways": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSeconds": 123,
"playCount": 123
},
"status": "INITIATED",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"submissionTimestampMs": 123,
"submitDelayExpireTimestampMs": 123,
"timelineEventList": [
{
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"message": "<string>",
"noonlightVerificationId": "<string>",
"threatCaseStatus": "INITIATED",
"timestampSec": 123,
"type": "ALERT",
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"verificationHistory": {
"alertIndex": 123,
"currentVerification": {
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"clipVerificationId": "<string>",
"failedAsClip": true,
"failedAsStream": true,
"initiatedAsClip": true,
"sentAsClip": true,
"sentAsClipAtMs": 123,
"sentAsWindowedStream": true,
"sentAsWindowedStreamAtMs": 123,
"streamVerificationId": "<string>",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
},
"verificationRecords": [
{
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"clipVerificationId": "<string>",
"failedAsClip": true,
"failedAsStream": true,
"initiatedAsClip": true,
"sentAsClip": true,
"sentAsClipAtMs": 123,
"sentAsWindowedStream": true,
"sentAsWindowedStreamAtMs": 123,
"streamVerificationId": "<string>",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
}
]
},
"verificationMode": "EXTERNAL"
}
],
"warningMsg": "<string>"
}Get alert monitoring threat cases
Get alert monitoring threat cases
curl --request POST \
--url https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases \
--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"
],
"lastEvaluatedKey": "<string>",
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"maxPageSize": 123,
"maxResults": 100,
"mostRecent": true,
"statusFilter": []
}
'import requests
url = "https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases"
payload = {
"afterTimestampMs": 1640995200000,
"beforeTimestampMs": 1641081600000,
"deviceFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"lastEvaluatedKey": "<string>",
"lastTimestampMs": 1640995200000,
"lastUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationFilter": ["AAAAAAAAAAAAAAAAAAAAAA"],
"maxPageSize": 123,
"maxResults": 100,
"mostRecent": True,
"statusFilter": []
}
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'],
lastEvaluatedKey: '<string>',
lastTimestampMs: 1640995200000,
lastUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
locationFilter: ['AAAAAAAAAAAAAAAAAAAAAA'],
maxPageSize: 123,
maxResults: 100,
mostRecent: true,
statusFilter: []
})
};
fetch('https://api2.rhombussystems.com/api/event/getAlertMonitoringThreatCases', 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/getAlertMonitoringThreatCases")
.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 \"lastEvaluatedKey\": \"<string>\",\n \"lastTimestampMs\": 1640995200000,\n \"lastUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"locationFilter\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"maxPageSize\": 123,\n \"maxResults\": 100,\n \"mostRecent\": true,\n \"statusFilter\": []\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"threatCases": [
{
"alertGroupingKeys": {},
"alertGroupingStrategy": "ALARM_RULES",
"associatedDeviceUuids": {},
"createdAtMillis": 123,
"deleted": true,
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationName": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"noonlightAlarmId": "<string>",
"noonlightVerificationId": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertComponentCompositeUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"policyAlertDeviceUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"policyAlertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyAlertUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"promptTheme": "THREAT",
"promptTitle": "<string>",
"sharedClipGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"sirenSettings": {
"audioGateways": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"durationSeconds": 123,
"playCount": 123
},
"status": "INITIATED",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"submissionTimestampMs": 123,
"submitDelayExpireTimestampMs": 123,
"timelineEventList": [
{
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"message": "<string>",
"noonlightVerificationId": "<string>",
"threatCaseStatus": "INITIATED",
"timestampSec": 123,
"type": "ALERT",
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"verificationHistory": {
"alertIndex": 123,
"currentVerification": {
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"clipVerificationId": "<string>",
"failedAsClip": true,
"failedAsStream": true,
"initiatedAsClip": true,
"sentAsClip": true,
"sentAsClipAtMs": 123,
"sentAsWindowedStream": true,
"sentAsWindowedStreamAtMs": 123,
"streamVerificationId": "<string>",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
},
"verificationRecords": [
{
"alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"clipVerificationId": "<string>",
"failedAsClip": true,
"failedAsStream": true,
"initiatedAsClip": true,
"sentAsClip": true,
"sentAsClipAtMs": 123,
"sentAsWindowedStream": true,
"sentAsWindowedStreamAtMs": 123,
"streamVerificationId": "<string>",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
}
]
},
"verificationMode": "EXTERNAL"
}
],
"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 alert monitoring threat cases with filtering and pagination options.
Filter for threat cases after this timestamp
1640995200000
Filter for threat cases 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
Whether to return only the most recent threat cases
true
List of threat case statuses to filter by
INITIATED, REQUESTED, FOLLOW_ON, ESCALATED, PSAP_CONTACTED, VERIFIED, DISMISSED, CANCELLED, UNVERIFIABLE, TIMEOUT, ERROR, CLOSED Response
OK