Plan capacity exceeded
https://developer.hostup.se/errors/target_plan_capacity_exceeded {
"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"
} 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);
}
}