upstream_object_storage_quota_shape_invalid

HTTP 502

Upstream response invalid

Type URL

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

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_object_storage_quota_shape_invalid",
  "title": "Upstream response invalid",
  "status": 502,
  "detail": "Upstream response invalid.",
  "code": "upstream_object_storage_quota_shape_invalid",
  "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_object_storage_quota_shape_invalid") {
    // Handle: Upstream response invalid
    console.error(problem.detail);
  }
}