Storage is still in use
https://developer.hostup.se/errors/resource_in_use {
"type": "https://developer.hostup.se/errors/resource_in_use",
"title": "Storage is still in use",
"status": 409,
"detail": "This VPS has ${usedAttachableStorageGb} GB of attached storage. Detach or delete storage until no more than ${targetAttachableStorageGb} GB remains, then schedule the reduction again.",
"code": "resource_in_use",
"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 === "resource_in_use") {
// Handle: Storage is still in use
console.error(problem.detail);
}
}