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

# Event types

> List of supported webhook event types and their payloads

Webhooks send real-time notifications when events happen in your Heyoo workspace. All webhook payloads follow this structure:

```json webhook-payload.json theme={null}
{
  "id": "evt_...",
  "event": "campaign.created",
  "timestamp": "2024-08-26T16:41:52.346Z",
  "data": {}
}
```

* **id** – Unique event ID
* **event** – Event type (e.g. `campaign.created`)
* **timestamp** – ISO 8601 timestamp when the event was created
* **data** – Event-specific payload

## Heyoo Webhooks

Here are the webhook events that are available for Heyoo:

### Workspace Level

| Event Type                                                     | Description                                                  |
| -------------------------------------------------------------- | ------------------------------------------------------------ |
| [`campaign.created`](/docs/webhooks/events/campaign-created)   | Occurs when a **new campaign is created** in your workspace. |
| [`campaign.launched`](/docs/webhooks/events/campaign-launched) | Occurs when a **campaign is launched** in your workspace.    |

### Campaign Level

| Event Type                                                   | Description                                     |
| ------------------------------------------------------------ | ----------------------------------------------- |
| [`campaign.clicked`](/docs/webhooks/events/campaign-clicked) | Occurs when a **campaign receives a click**.    |
| [`campaign.shared`](/docs/webhooks/events/campaign-shared)   | Occurs when a **campaign is shared** by a user. |

### Post Level

| Event Type                                               | Description                                           |
| -------------------------------------------------------- | ----------------------------------------------------- |
| [`post.published`](/docs/webhooks/events/post-published) | Occurs when a **post is published** via the platform. |
