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