nameserver_update_blocked

HTTP 409

Nameserver update blocked

Type URL

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

Example response

{
  "type": "https://developer.hostup.se/errors/nameserver_update_blocked",
  "title": "Nameserver update blocked",
  "status": 409,
  "detail": "Nameserver update blocked.",
  "code": "nameserver_update_blocked",
  "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 === "nameserver_update_blocked") {
    // Handle: Nameserver update blocked
    console.error(problem.detail);
  }
}