Domain not ready for hosting
https://developer.hostup.se/errors/domain_not_ready {
"type": "https://developer.hostup.se/errors/domain_not_ready",
"title": "Domain not ready for hosting",
"status": 409,
"detail": "Domain not ready for hosting.",
"code": "domain_not_ready",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "domain_not_ready") {
// Handle: Domain not ready for hosting
console.error(problem.detail);
}
}