Alert Open

Occurs whenever a alert is opened

Headers

x-flagright-signaturestringRequired

An HMAC SHA256 signature generated using the webhook payload and a shared signing secret. This is then converted to a hex encoded string.

Payload

The payload of this webhook request is an object.
createdTimestampdoubleRequired

Time at which the event was created. Measured in ms since the Unix epoch.

dataobjectRequired
idstringRequired

Unique identifier for the event

triggeredBy"MANUAL" or "SYSTEM"Required
Allowed values: MANUALSYSTEM

Event triggered by a user or system

type"ALERT_OPEN"RequiredDefaults to ALERT_OPEN

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "createdTimestamp": 1,
3 "data": {
4 "alertId": "string",
5 "status": "string",
6 "transactionIds": [
7 "string"
8 ],
9 "ruleName": "string",
10 "ruleDescription": "string",
11 "ruleId": "string",
12 "ruleInstanceId": "string",
13 "caseId": "string",
14 "userId": "string"
15 },
16 "id": "string",
17 "triggeredBy": "MANUAL",
18 "type": "ALERT_OPEN"
19}