Email forwarding not available
https://developer.hostup.se/errors/email_forwarding_not_found {
"type": "https://developer.hostup.se/errors/email_forwarding_not_found",
"title": "Email forwarding not available",
"status": 404,
"detail": "Email forwarding is not configured for this domain.",
"code": "email_forwarding_not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /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 DELETE /api/v2/domains/{id}/email-forwarding/{ruleId} Delete domain email forwarding rule const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "email_forwarding_not_found") {
// Handle: Email forwarding not available
console.error(problem.detail);
}
}