upstream_vps_product_shape_invalid

HTTP 502

Product catalog unavailable

Type URL

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

Possible detail messages

VPS product details could not be loaded. Please try again in a moment.
The current VPS product configuration could not be loaded for this resource change.

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_vps_product_shape_invalid",
  "title": "Product catalog unavailable",
  "status": 502,
  "detail": "VPS product details could not be loaded. Please try again in a moment.",
  "code": "upstream_vps_product_shape_invalid",
  "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_vps_product_shape_invalid") {
    // Handle: Product catalog unavailable
    console.error(problem.detail);
  }
}