Skip to main content
POST
/
api
/
event
/
getAlertMonitoringThreatCases
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": [
    "INITIATED"
  ]
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "lastEvaluatedKey": "<string>",
  "threatCases": [
    {
      "associatedDeviceUuids": {},
      "createdAtMillis": 123,
      "deleted": true,
      "deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "locationName": "<string>",
      "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "noonlightAlarmId": "<string>",
      "noonlightVerificationId": "<string>",
      "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "policyAlertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "policyAlertUuids": [
        "AAAAAAAAAAAAAAAAAAAAAA"
      ],
      "promptTheme": "THREAT",
      "promptTitle": "<string>",
      "sharedClipGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
      "sirenSettings": {
        "clipUuid": "AAAAAAAAAAAAAAAAAAAAAA",
        "durationSeconds": 123,
        "playCount": 123
      },
      "status": "INITIATED",
      "subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
      "submissionTimestampMs": 123,
      "submitDelayExpireTimestampMs": 123,
      "timelineEventList": [
        {
          "alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
          "message": "<string>",
          "noonlightVerificationId": "<string>",
          "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>"
        },
        "verificationRecords": [
          {
            "alertUuid": "AAAAAAAAAAAAAAAAAAAAAA",
            "clipVerificationId": "<string>",
            "failedAsClip": true,
            "failedAsStream": true,
            "initiatedAsClip": true,
            "sentAsClip": true,
            "sentAsClipAtMs": 123,
            "sentAsWindowedStream": true,
            "sentAsWindowedStreamAtMs": 123,
            "streamVerificationId": "<string>"
          }
        ]
      }
    }
  ],
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for retrieving alert monitoring threat cases with filtering and pagination options.

afterTimestampMs
integer<int64> | null

Filter for threat cases after this timestamp

Example:

1640995200000

beforeTimestampMs
integer<int64> | null

Filter for threat cases before this timestamp

Example:

1641081600000

deviceFilter
(string<RUUID> | null)[] | null

List of device UUIDs to filter by

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

lastEvaluatedKey
string | null
lastTimestampMs
integer<int64> | null

Last timestamp for pagination

Example:

1640995200000

lastUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

locationFilter
(string<RUUID> | null)[] | null

List of location UUIDs to filter by

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

maxPageSize
integer<int32> | null
maxResults
integer<int32> | null

Maximum number of results to return

Example:

100

mostRecent
boolean | null

Whether to return only the most recent threat cases

Example:

true

statusFilter
enum<string>[] | null

List of threat case statuses to filter by

Available options:
INITIATED,
REQUESTED,
FOLLOW_ON,
ESCALATED,
PSAP_CONTACTED,
VERIFIED,
DISMISSED,
CANCELLED,
UNVERIFIABLE,
TIMEOUT,
ERROR,
CLOSED

Response

200 - application/json

OK

Response object containing alert monitoring threat cases with pagination information.

error
boolean | null
errorMsg
string | null
lastEvaluatedKey
string | null
threatCases
object[] | null

List of threat cases matching the request criteria

warningMsg
string | null