Floating IP is assigned
https://developer.hostup.se/errors/floating_ip_assigned {
"type": "https://developer.hostup.se/errors/floating_ip_assigned",
"title": "Floating IP is assigned",
"status": 409,
"detail": "Unassign this floating IP from all VPS instances before releasing it.",
"code": "floating_ip_assigned",
"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 === "floating_ip_assigned") {
// Handle: Floating IP is assigned
console.error(problem.detail);
}
}