same_product_plan

HTTP 409

Plan change not needed

Type URL

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

Example response

{
  "type": "https://developer.hostup.se/errors/same_product_plan",
  "title": "Plan change not needed",
  "status": 409,
  "detail": "Plan change not needed.",
  "code": "same_product_plan",
  "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 === "same_product_plan") {
    // Handle: Plan change not needed
    console.error(problem.detail);
  }
}