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

# Webhook events

> form.submitted, form.confirmed, and form.unsubscribed.

<Tip>
  Configure under **Integrations → Webhooks**. See [Webhooks](/en/guides/webhooks/index) for signing and retries.
</Tip>

## Events

| Event               | When it fires                                          |
| ------------------- | ------------------------------------------------------ |
| `form.submitted`    | Submission registered (active or pending confirmation) |
| `form.confirmed`    | Double opt-in confirmed                                |
| `form.unsubscribed` | Unsubscribe (typical for newsletter)                   |

## Example, `form.submitted`

```json theme={null}
{
  "event": "form.submitted",
  "data": {
    "subscriptionId": "cmuxxxsub",
    "formId": "cmuxxxform",
    "email": "person@example.com",
    "status": "CONFIRMED"
  }
}
```

Fields vary by template and API response.

## Next steps

* [Templates and use cases](/en/marketing-addons-api/como-funciona/templates-e-casos-de-uso)
* [Quick Start](/en/marketing-addons-api/como-funciona/quick-start)
* [Webhooks (guide)](/en/guides/webhooks/index)
