not_supported

HTTP 409

Plugin install unavailable for this site

Type URL

https://developer.hostup.se/errors/not_supported

Detail message

The WordPress site on ${domain} is not tracked by the control panel

Example response

{
  "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"
}

Endpoints that may return this error

Handling this error

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);
  }
}