Domain Verified
Webhook event payload for `domain.verified`.
Delivery
Webhook deliveries are signed with Svix headers:
svix-idsvix-timestampsvix-signature
Event Type
domain.verified
Payload Schema
{
"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
{
"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"
}