---
title: Domain Verified
description: Webhook event payload for `domain.verified`.
---

{/* This file is generated by Agentry docs tooling.
Do not edit this file directly. Any changes should be made by running the generation command again. */}

## Delivery

Webhook deliveries are signed with Svix headers:

- `svix-id`
- `svix-timestamp`
- `svix-signature`

## Event Type

`domain.verified`

## Payload Schema

```json
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "event"
      ]
    },
    "event_type": {
      "type": "string",
      "enum": [
        "domain.verified"
      ]
    },
    "event_id": {
      "$ref": "#/components/schemas/type_events:EventId"
    },
    "domain": {
      "$ref": "#/components/schemas/type_domains:Domain"
    }
  },
  "required": [
    "type",
    "event_type",
    "event_id",
    "domain"
  ],
  "title": "DomainVerifiedEvent"
}
```

## Example Payload

```json
{
  "domain": {
    "client_id": "<string>",
    "created_at": "2026-01-01T00:00:00Z",
    "domain": "<string>",
    "domain_id": "<string>",
    "feedback_enabled": true,
    "pod_id": "<string>",
    "records": [
      {
        "name": "<string>",
        "priority": 0,
        "status": "MISSING",
        "type": "TXT",
        "value": "<string>"
      }
    ],
    "status": null,
    "updated_at": "2026-01-01T00:00:00Z"
  },
  "event_id": "<string>",
  "event_type": "domain.verified",
  "type": "event"
}
```
