domain_not_eligible

HTTP 400

Domain not eligible

Type URL

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

Detail message

An active snapback request already exists for ${domainName}.

Example response

{
  "type": "https://developer.hostup.se/errors/domain_not_eligible",
  "title": "Domain not eligible",
  "status": 400,
  "detail": "An active snapback request already exists for ${domainName}.",
  "code": "domain_not_eligible",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

HTTP status codes

This error can be returned with different status codes depending on context:

400 409

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 === "domain_not_eligible") {
    // Handle: Domain not eligible
    console.error(problem.detail);
  }
}