VPS not ready
https://developer.hostup.se/errors/vps_not_ready {
"type": "https://developer.hostup.se/errors/vps_not_ready",
"title": "VPS not ready",
"status": 409,
"detail": "VPS not ready.",
"code": "vps_not_ready",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/vps/{id}/firmware Get VPS firmware mode PUT /api/v2/vps/{id}/firmware Change VPS firmware mode GET /api/v2/vps/{id}/hostname Get VPS hostname PUT /api/v2/vps/{id}/hostname Change VPS hostname GET /api/v2/vps/{id}/ssh-password-login Get VPS SSH password-login state PATCH /api/v2/vps/{id}/ssh-password-login Set VPS SSH password login const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "vps_not_ready") {
// Handle: VPS not ready
console.error(problem.detail);
}
}