Account inactive
https://developer.hostup.se/errors/account_inactive {
"type": "https://developer.hostup.se/errors/account_inactive",
"title": "Account inactive",
"status": 403,
"detail": "Account inactive.",
"code": "account_inactive",
"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 === "account_inactive") {
// Handle: Account inactive
console.error(problem.detail);
}
}