upstream_vps_backup_schedule_shape_invalid

HTTP 502

Upstream failure

Type URL

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

Detail message

The legacy VPS backup schedule response was missing a schedule row.

Example response

{
  "type": "https://developer.hostup.se/errors/upstream_vps_backup_schedule_shape_invalid",
  "title": "Upstream failure",
  "status": 502,
  "detail": "The legacy VPS backup schedule response was missing a schedule row.",
  "code": "upstream_vps_backup_schedule_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_backup_schedule_shape_invalid") {
    // Handle: Upstream failure
    console.error(problem.detail);
  }
}