Backup wiederherstellen - Status abfragen

POST /vm/:vmid/backup/restore/status

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": "cb5c7841-438b-41bc-8331-fb2aff039326",
    "message": "VM backup task result is shown below",
    "data": {
        "status": "pending",
        "progress": {
            "percentage": 40
        }
    }
}

Response Enums

Response Parameter Beschreibung
status Status des Backups

cURL

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

Anfrage testen