Skip to main content
POST
/
api
/
alertmonitoring
/
dismissThreatCase
Dismiss threat case
curl --request POST \
  --url https://api2.rhombussystems.com/api/alertmonitoring/dismissThreatCase \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "pin": "1234",
  "uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "success": true,
  "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 to dismiss a threat case in alert monitoring.

orgUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

pin
string | null

PIN code required to dismiss the threat case

Example:

"1234"

uuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

Response indicating the result of dismissing a threat case.

error
boolean | null
errorMsg
string | null
success
boolean | null

Indicates whether the threat case dismissal was successful

Example:

true

warningMsg
string | null