Upstream failure
https://developer.hostup.se/errors/upstream_vps_backup_schedule_shape_invalid {
"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"
} 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);
}
}