Object storage not enabled
https://developer.hostup.se/errors/object_storage_not_enabled {
"type": "https://developer.hostup.se/errors/object_storage_not_enabled",
"title": "Object storage not enabled",
"status": 400,
"detail": "Object storage is not enabled for this account.",
"code": "object_storage_not_enabled",
"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 === "object_storage_not_enabled") {
// Handle: Object storage not enabled
console.error(problem.detail);
}
}