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

# Collection deleted webhook event

> Webhook data sent when a new collection is deleted

## Webhook data

```ts theme={null}
type CollectionDeletedData {
  id: string;
  title: string;
  slug: string;
  description: string;
  deletedAt: string;
}
```

## Example Webhook data

```ts theme={null}
{
  "id": "a75337b0-f730-4522-97ab-3fd622d43f27",
  "title": "Test Swag Store",
  "slug": "test-swag-store",
  "title": "Test Swag Store",
  "description": "Cool new store!",
  "deletedAt": "2024-01-01 15:45:25.932562",
}
```
