upstream_unavailable

HTTP 503

Billing account unavailable

Type URL

https://developer.hostup.se/errors/upstream_unavailable

Detail message

Billing account data could not be loaded.

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_unavailable",
  "title": "Billing account unavailable",
  "status": 503,
  "detail": "Billing account data could not be loaded.",
  "code": "upstream_unavailable",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "upstream_unavailable") {
    // Handle: Billing account unavailable
    console.error(problem.detail);
  }
}