target_plan_capacity_exceeded

HTTP 409

Plan capacity exceeded

Type URL

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

Detail message

The account currently uses more storage than the selected plan includes. Reduce storage use or choose a larger plan.

Example response

{
  "type": "https://developer.hostup.se/errors/target_plan_capacity_exceeded",
  "title": "Plan capacity exceeded",
  "status": 409,
  "detail": "The account currently uses more storage than the selected plan includes. Reduce storage use or choose a larger plan.",
  "code": "target_plan_capacity_exceeded",
  "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 === "target_plan_capacity_exceeded") {
    // Handle: Plan capacity exceeded
    console.error(problem.detail);
  }
}