dns_record_limit_exceeded

HTTP 409

DNS record limit reached

Type URL

https://developer.hostup.se/errors/dns_record_limit_exceeded

Detail message

Remove an existing DNS record before enabling the parking page.

Example response

{
  "type": "https://developer.hostup.se/errors/dns_record_limit_exceeded",
  "title": "DNS record limit reached",
  "status": 409,
  "detail": "Remove an existing DNS record before enabling the parking page.",
  "code": "dns_record_limit_exceeded",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "dns_record_limit_exceeded") {
    // Handle: DNS record limit reached
    console.error(problem.detail);
  }
}