List Update

Occurs whenever a whitelist or blacklist is updated

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>=315529200000<=4133890801000

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

dataobjectRequired
idstringRequired

Unique identifier for the event

triggeredByenumRequired
Allowed values: MANUALSYSTEM

Event triggered by a user or system

type"LIST_UPDATED"Required

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "createdTimestamp": 1.1,
3 "data": {
4 "listId": "listId",
5 "action": "SET",
6 "items": [
7 {
8 "key": "key"
9 }
10 ]
11 },
12 "id": "id",
13 "triggeredBy": "MANUAL",
14 "type": "LIST_UPDATED"
15}
Built with