3.6. Deleting Instance BackupsΒΆ
DELETE /instances/{instance_id}/backups/{backup_id}
Creates a task to delete the specified backup of the specified instance.
Request example:
# curl -s -X DELETE -H 'Content-Type: application/json' -H 'X-Auth-Token: gAAAAA<...>' \
-H 'X-Effective-User-ID: c3862f44c4bc48358db62ae22d684f33' \
-H 'X-Effective-Project-ID: 04e0d744d0f544c69ff7c17db5c8b4b9' \
https://<controller_hostname>/api/v1/instances/6e634127-5c8c-4205-8ac6-a8113cdc58a1\
/backups/%7B0eac2484-a84c-4c9a-a8b8-f89f562dbd81%7D
Response example:
{
"id": 21,
"instance_uuid": "23bc7ae1-fa36-4050-977d-6d4e2a1c4cc9",
"type": "delete_backup",
"user_id": "admin",
"project_id": "admin",
"status": null,
"state": "running",
"progress": 0,
"message": null
}
Dec 08, 2021