Backup not found
https://developer.hostup.se/errors/backup_not_found {
"type": "https://developer.hostup.se/errors/backup_not_found",
"title": "Backup not found",
"status": 404,
"detail": "The requested restore point could not be found for this hosting account. List the account",
"code": "backup_not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/shared-hosting/{accountId}/backups/{snapshotId}/actions/restore Restore hosting backup DELETE /api/v2/vps/{id}/backups/{backupId} Delete VPS backup POST /api/v2/vps/{id}/backups/{backupId}/actions/restore Restore VPS backup POST /api/v2/vps/{id}/backups/{backupId}/actions/restore-to-payg Restore backup to a new Cloud VM const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "backup_not_found") {
// Handle: Backup not found
console.error(problem.detail);
}
}