Email forwarding rule not found
https://developer.hostup.se/errors/email_forwarding_rule_not_found {
"type": "https://developer.hostup.se/errors/email_forwarding_rule_not_found",
"title": "Email forwarding rule not found",
"status": 404,
"detail": "The requested email forwarding rule could not be found.",
"code": "email_forwarding_rule_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_rule_not_found") {
// Handle: Email forwarding rule not found
console.error(problem.detail);
}
}