User Tags Update

Occurs whenever a user’s tags are 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

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"USER_TAGS_UPDATED"RequiredDefaults to USER_TAGS_UPDATED

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "createdTimestamp": 1,
3 "data": {
4 "userId": "string",
5 "tags": [
6 {
7 "key": "string",
8 "value": "string",
9 "isEditable": true
10 }
11 ]
12 },
13 "id": "string",
14 "triggeredBy": "MANUAL",
15 "type": "USER_TAGS_UPDATED"
16}