restore_intent_failed

HTTP 503

Restore scheduling failed

Type URL

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

Detail message

The order was created, but the backup restore could not be scheduled. Retry the same checkout attempt before paying.

Example response

{
  "type": "https://developer.hostup.se/errors/restore_intent_failed",
  "title": "Restore scheduling failed",
  "status": 503,
  "detail": "The order was created, but the backup restore could not be scheduled. Retry the same checkout attempt before paying.",
  "code": "restore_intent_failed",
  "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 === "restore_intent_failed") {
    // Handle: Restore scheduling failed
    console.error(problem.detail);
  }
}