Billing currency unavailable
https://developer.hostup.se/errors/billing_currency_unavailable {
"type": "https://developer.hostup.se/errors/billing_currency_unavailable",
"title": "Billing currency unavailable",
"status": 502,
"detail": "The billing currency could not be verified for this service. Try again shortly.",
"code": "billing_currency_unavailable",
"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 === "billing_currency_unavailable") {
// Handle: Billing currency unavailable
console.error(problem.detail);
}
}