Alert Close

Occurs whenever a alert is closed

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.
createdTimestamp
doubleRequired
Time at which the event was created. Measured in ms since the Unix epoch.
data
objectRequired
id
stringRequired
Unique identifier for the event
triggeredBy
enumRequired
Event triggered by a user or system
Allowed values: MANUALSYSTEM
type
"ALERT_CLOSED"Required

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 "reasons": [
7 "string"
8 ],
9 "reasonDescriptionForOther": "string",
10 "comment": "string",
11 "userId": "string",
12 "transactionIds": [
13 "string"
14 ],
15 "ruleName": "string",
16 "ruleDescription": "string",
17 "ruleId": "string",
18 "ruleInstanceId": "string"
19 },
20 "id": "string",
21 "triggeredBy": "MANUAL",
22 "type": "ALERT_CLOSED"
23}