Domainee Docs

domain.created

Fires when you POST /v1/domains.

Fires when you successfully POST /v1/domains. The domain status is pending at this point — DNS hasn't been verified yet.

Payload

{
  "id": "<event-id>",
  "type": "domain.created",
  "createdAt": "2026-05-05T11:39:12.884Z",
  "data": {
    "id": "8f09b47c-...",
    "hostname": "shop.acme.com",
    "status": "pending"
  }
}

Use it for

  • Provisioning rows in your own DB
  • Kicking off a follow-up email to your customer with DNS instructions

On this page