Domain not eligible
https://developer.hostup.se/errors/domain_not_eligible {
"type": "https://developer.hostup.se/errors/domain_not_eligible",
"title": "Domain not eligible",
"status": 400,
"detail": "An active snapback request already exists for ${domainName}.",
"code": "domain_not_eligible",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} This error can be returned with different status codes depending on context:
/api/v2/domains/{id}/actions/update-epp Save EPP code for transfer GET /api/v2/domains/{id}/email-forwarding Get domain email forwarding POST /api/v2/domains/{id}/email-forwarding Create domain email forwarding rule PUT /api/v2/domains/{id}/email-forwarding Update domain email catch-all PATCH /api/v2/domains/{id}/email-forwarding Toggle domain email forwarding const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "domain_not_eligible") {
// Handle: Domain not eligible
console.error(problem.detail);
}
}