Create a domain identity verification link

Generate a unique verification link for a specific domain. This link is sent to the domain's registered email address to confirm identity. The endpoint also returns a requestId that can be used to track the operation.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domain-identity-verification-links/{domainId}
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-identity-verification-links/724" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "link": "string",
    "path": "string",
    "expiresAt": "string",
    "domainName": "string"
  }
}