Verify domain owner identity, requiring BankID if necessary

Verify the identity of a domain owner. Certain actions, like changing personal/organizational numbers, require BankID verification. The endpoint returns a `requestId` for subsequent calls to complete the process.

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
400
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/domain-verify-identity/{domainId}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-verify-identity/20454" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "requiresBankId": true,
    "verified": true,
    "domainName": "string",
    "domainExtension": "string",
    "message": "string"
  }
}