domain_conflict

HTTP 409

Domain conflict

Type URL

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

Detail message

One or more domains in the cart cannot be ordered.

Example response

{
  "type": "https://developer.hostup.se/errors/domain_conflict",
  "title": "Domain conflict",
  "status": 409,
  "detail": "One or more domains in the cart cannot be ordered.",
  "code": "domain_conflict",
  "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 === "domain_conflict") {
    // Handle: Domain conflict
    console.error(problem.detail);
  }
}