unsupported_plan_transition

HTTP 409

Plan change unavailable

Type URL

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

Possible detail messages

Reseller hosting changes require a separate account migration. Contact support to make this change.
The plan direction could not be verified safely.

Example response

{
  "type": "https://developer.hostup.se/errors/unsupported_plan_transition",
  "title": "Plan change unavailable",
  "status": 409,
  "detail": "Reseller hosting changes require a separate account migration. Contact support to make this change.",
  "code": "unsupported_plan_transition",
  "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 === "unsupported_plan_transition") {
    // Handle: Plan change unavailable
    console.error(problem.detail);
  }
}