DNS conflict
https://developer.hostup.se/errors/dns_conflict {
"type": "https://developer.hostup.se/errors/dns_conflict",
"title": "DNS conflict",
"status": 409,
"detail": "DNS conflict.",
"code": "dns_conflict",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/domains/{id}/redirects List domain redirects POST /api/v2/domains/{id}/redirects Create domain redirect GET /api/v2/shared-hosting/{accountId}/domains List hosting domains POST /api/v2/shared-hosting/{accountId}/domains Add hosting addon domain DELETE /api/v2/shared-hosting/{accountId}/domains Remove hosting addon domain const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "dns_conflict") {
// Handle: DNS conflict
console.error(problem.detail);
}
}