Channel User Tag Created
When a tag gets attached to a channel user you will receive a channel_user.tag.created event.
Request example
js{
    "event": "channel_user.tag.created",
    "id": "1b68e131-2835-48a9-a56d-f41c5082e1e5",
    "account": 1,
    "app": 1,
    "createdAt": 1652974359,
    "deliveryAttempts": 1,
    "firstDeliveryAttempt": 1652974359,
    "data": {
        "id": 1,
        "tagName": "cool",
        "tagColor": "#F87171",
        "tagDescription": "",
        "createdBy": 1,
        "createdAt": "2022-05-19T15:32:39.547Z",
        "updatedAt": "2022-05-19T15:32:39.547Z",
        "userId": 1
    }
}
Request data breakdown
| Key | value | type | Description | 
|---|---|---|---|
| event | channel_user.tag.created | string | name of the event | 
| id | 30837b84-b007-46dd-943a-092513f69cd8 | string | id of the event | 
| account | 1 | Integer | id of the account | 
| app | 1 | Integer | id of the app | 
| createdAt | 1652968658 | Integer | timestamp of the creation date | 
| deliveryAttempts | 1 | Integer | Number of times we tried to deliver the event | 
| firstDeliveryAttempt | 1652968658 | Integer | timestamp of the first time we tried to deliver the event | 
| data | Tag Object | Tag | data of the object |