floating_ip_not_found

HTTP 404

Floating IP not found

Type URL

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

Possible detail messages

The requested floating IP could not be found.
The floating IP could not be resolved to an address in IPAM.
The requested floating IP could not be found in your account.

Example response

{
  "type": "https://developer.hostup.se/errors/floating_ip_not_found",
  "title": "Floating IP not found",
  "status": 404,
  "detail": "The requested floating IP could not be found.",
  "code": "floating_ip_not_found",
  "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_not_found") {
    // Handle: Floating IP not found
    console.error(problem.detail);
  }
}