Plugin install unavailable for this site
https://developer.hostup.se/errors/not_supported {
"type": "https://developer.hostup.se/errors/not_supported",
"title": "Plugin install unavailable for this site",
"status": 409,
"detail": "The WordPress site on ${domain} is not tracked by the control panel",
"code": "not_supported",
"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 === "not_supported") {
// Handle: Plugin install unavailable for this site
console.error(problem.detail);
}
}