---
title: "domain.delete"
sidebarTitle: "domain.delete"
description: "Webhook event triggered when a domain is deleted."
---
> For the complete documentation index, see [llms-docs.txt](/llms-docs.txt) or the site index [llms.txt](/llms.txt). Full docs corpus: [llms-full-docs.txt](/llms-full-docs.txt). Prefer markdown URLs (append `.md`) for agent consumption. Product skill: [skill.md](/skill.md).


<SideBySide>
  <Side>

    The `domain.delete` event is triggered when a domain is removed from your organization.

    ## Event Details
    All webhook payloads follow a consistent top-level structure with event-specific data nested within the `data` object.

    ### type `string`
    The event type that triggered the webhook (`domain.delete`).

    ### created_at `string`
    ISO 8601 timestamp when the webhook event was created.

    ### data `object`
    Contains the deleted domain identity (`id`, `name`, `status`).

    ## Handling this event
    When your endpoint receives a `domain.delete` event, you might want to:
    - Stop sending from that domain in your application.
    - Remove DNS setup reminders.
    - Clean up local domain caches.
  </Side>

  <Side>

    ```json
    {
      "id": "whev_01h…",
      "type": "domain.delete",
      "created_at": "2026-07-22T12:00:00.000Z",
      "data": {
        "id": "dom_123456789",
        "name": "example.com",
        "status": "pending"
      }
    }
    ```
  </Side>
</SideBySide>

## Learn More

- [Webhooks Introduction](/docs/webhooks)
- [All Event Types](/docs/webhooks/event-types)
