Domain not owned by hosting account
https://developer.hostup.se/errors/domain_not_owned {
"type": "https://developer.hostup.se/errors/domain_not_owned",
"title": "Domain not owned by hosting account",
"status": 403,
"detail": "The requested domain is not hosted on this cPanel account.",
"code": "domain_not_owned",
"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 === "domain_not_owned") {
// Handle: Domain not owned by hosting account
console.error(problem.detail);
}
}