> ## 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 created webhook event

> Webhook data sent when a new collection is created

## Webhook data

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

## Example Webhook data

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