Cooldown active
https://developer.hostup.se/errors/cooldown_active {
"type": "https://developer.hostup.se/errors/cooldown_active",
"title": "Cooldown active",
"status": 409,
"detail": "Invoice #${invoiceNumber} is still pending — pay or cancel it before requesting another critical credit.",
"code": "cooldown_active",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} This error can be returned with different status codes depending on context:
const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "cooldown_active") {
// Handle: Cooldown active
console.error(problem.detail);
}
}