floating_ip_assigned

HTTP 409

Floating IP is assigned

Type URL

https://developer.hostup.se/errors/floating_ip_assigned

Detail message

Unassign this floating IP from all VPS instances before releasing it.

Example response

{
  "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"
}

Handling this error

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);
  }
}