ddos_mitigation_active

HTTP 409

DDoS mitigation already active

Type URL

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

Detail message

DDoS mitigation is already active for this IP address.

Example response

{
  "type": "https://developer.hostup.se/errors/ddos_mitigation_active",
  "title": "DDoS mitigation already active",
  "status": 409,
  "detail": "DDoS mitigation is already active for this IP address.",
  "code": "ddos_mitigation_active",
  "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 === "ddos_mitigation_active") {
    // Handle: DDoS mitigation already active
    console.error(problem.detail);
  }
}