For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/webhooks/domains/created.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

domain.create

Webhook event triggered when a new domain is created.

{
  "id": "whev_01h…",
  "type": "domain.create",
  "created_at": "2026-07-22T12:00:00.000Z",
  "data": {
    "id": "dom_123456789",
    "name": "example.com",
    "status": "pending"
  }
}

The domain.create event is triggered when a new domain is successfully added to your Reloop account.

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.create).

created_at string

ISO 8601 timestamp when the webhook event was created.

data object

Contains the details of the newly created domain (id, name, status).

Handling this event

When your endpoint receives a domain.create event, you might want to:

  • Sync the domain status with your internal system.
  • Trigger DNS verification workflows.
  • Log the activity for auditing.

Learn More

Was this page helpful?

Edit this page