Domain not found
https://developer.hostup.se/errors/domain_not_found {
"type": "https://developer.hostup.se/errors/domain_not_found",
"title": "Domain not found",
"status": 404,
"detail": "The requested domain could not be found.",
"code": "domain_not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/domains/{id} Get domain details PATCH /api/v2/domains/{id} Update domain settings DELETE /api/v2/domains/{id} Delete domain POST /api/v2/domains/{id}/actions/renew Renew a domain POST /api/v2/domains/{id}/actions/request-epp Request an EPP code POST /api/v2/domains/{id}/actions/request-unlock Request domain unlock POST /api/v2/domains/{id}/actions/respond-to-renewal Respond to pending domain renewal POST /api/v2/domains/{id}/actions/retry-transfer Retry domain transfer POST /api/v2/domains/{id}/actions/status-sync Sync domain status from registry const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "domain_not_found") {
// Handle: Domain not found
console.error(problem.detail);
}
}