backup_temporarily_locked

HTTP 409

Backup temporarily locked

Type URL

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

Detail message

The backup is temporarily locked by another operation. Try again shortly.

Example response

{
  "type": "https://developer.hostup.se/errors/backup_temporarily_locked",
  "title": "Backup temporarily locked",
  "status": 409,
  "detail": "The backup is temporarily locked by another operation. Try again shortly.",
  "code": "backup_temporarily_locked",
  "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 === "backup_temporarily_locked") {
    // Handle: Backup temporarily locked
    console.error(problem.detail);
  }
}