> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.wapilot.io/llms.txt
> Use this file to discover all available pages before exploring further.

# label.deleted

> Fired when a label (contact tag) is deleted.

## When it fires

This event fires when a label is permanently removed from your organization.

## Payload

```json theme={null}
{
  "event": "label.deleted",
  "data": {
    "uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "xxxx",
    "color": "#xxxxxx"
  }
}
```

## Key fields

| Field        | Description                |
| ------------ | -------------------------- |
| `data.uuid`  | UUID of the deleted label  |
| `data.name`  | Name of the deleted label  |
| `data.color` | Color of the deleted label |

<Note>
  Unlike other delete events, this payload does not include a `deleted_at` timestamp.
</Note>
