DDoS mitigation already active
https://developer.hostup.se/errors/ddos_mitigation_active {
"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"
} 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);
}
}