Skip to main content

POST /domains//verify

Trigger a verification check for a domain. If DNS records are properly configured, the domain status will change to verified.

Authentication

JWT (Dashboard)

Path Parameters

ParameterTypeDescription
idstring (UUID)Domain ID

Response

{
  "success": true,
  "data": {
    "status": "verified",
    "verified": true
  },
  "message": "Domain verified successfully!"
}
If not yet verified:
{
  "success": true,
  "data": {
    "status": "pending",
    "verified": false
  },
  "message": "Domain verification is still pending..."
}
DNS propagation can take 5–30 minutes. If verification fails, double-check your DNS records.