Control panel action unavailable
https://developer.hostup.se/errors/account_not_eligible_cpanel {
"type": "https://developer.hostup.se/errors/account_not_eligible_cpanel",
"title": "Control panel action unavailable",
"status": 409,
"detail": "Control panel action unavailable.",
"code": "account_not_eligible_cpanel",
"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 === "account_not_eligible_cpanel") {
// Handle: Control panel action unavailable
console.error(problem.detail);
}
}