cidr_overlap

HTTP 409

CIDR overlaps an existing allocation

Type URL

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

Detail message

The requested CIDR is already in use. Omit

Example response

{
  "type": "https://developer.hostup.se/errors/cidr_overlap",
  "title": "CIDR overlaps an existing allocation",
  "status": 409,
  "detail": "The requested CIDR is already in use. Omit ",
  "code": "cidr_overlap",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "cidr_overlap") {
    // Handle: CIDR overlaps an existing allocation
    console.error(problem.detail);
  }
}