object_storage_not_enabled

HTTP 400

Object storage not enabled

Type URL

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

Detail message

Object storage is not enabled for this account.

Example response

{
  "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"
}

Handling this error

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);
  }
}