Domain not renewable
https://developer.hostup.se/errors/domain_not_renewable {
"type": "https://developer.hostup.se/errors/domain_not_renewable",
"title": "Domain not renewable",
"status": 409,
"detail": "Domain not renewable.",
"code": "domain_not_renewable",
"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_renewable") {
// Handle: Domain not renewable
console.error(problem.detail);
}
}