Initiate a restore of a Virtual Private Server (VPS) to a specific backed-up state. You need to provide the ID of the backup you want to restore from, which can be found in your VPS management panel. The endpoint returns a jobId that you use to track the restore process via other API calls.
vmid integer · min: 1 required Example Unique vmid identifier
Accept Example Content-Type Example volid string required success boolean timestamp string requestId string data object https://cloud.hostup.se/api/vm/{vmid}/backups curl -X PUT "https://cloud.hostup.se/api/vm/10017/backups" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"volid": "string"
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"success": true,
"jobId": "string",
"message": "string",
"vmid": "string"
}
} {
"volid": "string"
}