Backup erstellen - Status abfragen

POST /vm/:vmid/backup/create/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": "ba0bfbbd-6fca-4625-bf7d-5b8982134417",
    "message": "VM backup task result is shown below",
    "data": {
        "status": "pending",
        "progress": {
            "percentage": 14,
            "data_stored": 1.4,
            "total_data": 10
        }
    }
}

Response Enums

Response Parameter Beschreibung
status Status des Backups

cURL

curl "https://live.fireapi.de/vm/:vmid/backup/create/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