Backup wiederherstellen

POST /vm/:vmid/backup/restore

URL Variablen

Name Beschreibung
vmid Identifier der VM (fünfstellige Zahl)

Body Parameter (application/x-www-form-urlencoded)

Name Format Beschreibung Optional
backup_id String Backup-ID des Backups

Response (application/json)

{
    "status": "success",
    "requestID": "ab937d3a-5d0b-4e19-8cfb-fec711278552",
    "message": "backup restore task started",
    "data": {
        "backup_id": "42276a08-e8e9-4917-9715-cc2e91f421f4"
    }
}

cURL

curl "https://live.fireapi.de/vm/:vmid/backup/restore" -X POST -H "Content-Type: application/x-www-form-urlencoded" -H "X-FIRE-APIKEY: REPLACE_API-KEY" -d "backup_id=REPLACE_VALUE"

Anfrage testen