Domainee Docs

domain.deleted

Fires when you DELETE /v1/domains/{id}.

Fires when you DELETE /v1/domains/{id}. The domain is already gone by the time the event fires — this is a confirmation hook, not a "you can still cancel" hook.

Payload

{
  "id": "<event-id>",
  "type": "domain.deleted",
  "createdAt": "2026-05-05T14:00:00.000Z",
  "data": {
    "id": "8f09b47c-...",
    "hostname": "shop.acme.com"
  }
}

Use it for

  • Cleaning up corresponding rows on your side
  • Double-entry auditing
  • Removing the domain from any internal status pages

On this page