group_in_use

HTTP 409

Firewall group is in use

Type URL

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

Detail message

This firewall group is still assigned to one or more VPS instances. Remove the assignments first.

Example response

{
  "type": "https://developer.hostup.se/errors/group_in_use",
  "title": "Firewall group is in use",
  "status": 409,
  "detail": "This firewall group is still assigned to one or more VPS instances. Remove the assignments first.",
  "code": "group_in_use",
  "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 === "group_in_use") {
    // Handle: Firewall group is in use
    console.error(problem.detail);
  }
}