upstream_shared_hosting_storage_addons_unavailable

HTTP 502

Storage add-ons unavailable

Type URL

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

Detail message

Storage add-on pricing could not be loaded. Please try again in a moment.

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_shared_hosting_storage_addons_unavailable",
  "title": "Storage add-ons unavailable",
  "status": 502,
  "detail": "Storage add-on pricing could not be loaded. Please try again in a moment.",
  "code": "upstream_shared_hosting_storage_addons_unavailable",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

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

  if (problem.code === "upstream_shared_hosting_storage_addons_unavailable") {
    // Handle: Storage add-ons unavailable
    console.error(problem.detail);
  }
}