Generate a domain identity verification link

Create a unique link required to verify your domain's identity, often necessary for changes to organization numbers on .com/.nu domains. The link is sent to the registered owner and is valid for a limited time.

Domain Services Domains

Context

Where to get IDs / values

Path Parameters

domainId integer · min: 1 required Example: 724

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
data object required
data.domainName string required · Example: example.com
data.expiresAt string required · Example: 2026-02-10T00:00:00.000Z
data.link string required · Example: http://localhost:3001/domain-verify/hzf9zs6EPnLIguKzt2gU913U0O~.lp0D961fQ0rErcb~BcAYFBr...
data.path string required · Example: /domain-verify/hzf9zs6EPnLIguKzt2gU913U0O~.lp0D961fQ0rErcb~BcAYFBrhW43.Xb7.4i11
requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

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": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "link": "http://localhost:3001/domain-verify/hzf9zs6EPnLIguKzt2gU913U0O~.lp0D961fQ0rErcb~BcAYFBrhW43.Xb7.4i11",
    "path": "/domain-verify/hzf9zs6EPnLIguKzt2gU913U0O~.lp0D961fQ0rErcb~BcAYFBrhW43.Xb7.4i11",
    "expiresAt": "2026-02-10T00:00:00.000Z",
    "domainName": "example.com"
  }
}