Restore from backup

Queue a full account restore from a JetBackup backup using the snapshotId (parent_id) from the backup list. The restore runs in the background; use the queue endpoint to follow progress.

Path Parameters

accountId integer · min: 1 required Example

Unique account identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
snapshotId string required

Snapshot ID (parent_id from the backup list)

Responses

200 Successful response
queued string
queueId string
status string
POST https://cloud.hostup.se/api/hosting/{accountId}/jetbackup/restore
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting/8665/jetbackup/restore" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "snapshotId": "string"
  }'
Response
{
  "queued": "string",
  "queueId": "string",
  "status": "string"
}
Request Body
{
  "snapshotId": "string"
}