VPS not found
https://developer.hostup.se/errors/vps_not_found {
"type": "https://developer.hostup.se/errors/vps_not_found",
"title": "VPS not found",
"status": 404,
"detail": "The requested VPS could not be found.",
"code": "vps_not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/volumes List Cloud VPS block volumes POST /api/v2/volumes Create attached Cloud VPS block volume POST /api/v2/vps/{id}/actions/add-disk Add VPS disk GET /api/v2/vps/{id}/actions/billing-cycle Get VPS billing-cycle options POST /api/v2/vps/{id}/actions/billing-cycle Change VPS billing cycle POST /api/v2/vps/{id}/actions/cancel Cancel VPS POST /api/v2/vps/{id}/actions/config Change VPS resource options GET /api/v2/vps/{id}/actions/convert-to-cloud Check Cloud VPS conversion eligibility POST /api/v2/vps/{id}/actions/convert-to-cloud Convert VPS to Cloud VPS const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "vps_not_found") {
// Handle: VPS not found
console.error(problem.detail);
}
}