Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: V2 Delete Backup Example

...

At a given time, only one of backupId, maxNumBackup and purge parameters should be specified.

Code Block
titleV1 Delete Backup Request

/admin/collections?action=DELETE_BACKUP&
  name=myBackupName&
  location=/path/to/my/shared/drive&
  backupId=<number of backupId>


Code Block
titleV2 Delete Backup Request
POST /v2/cluster/backups 
{
  "delete-backup": {
    "name": "myBackupName",
    "location": "/path/to/my/shared/drive",
    "backupId": 5 
  } 
} 

Example response when deleting a particular backupId:

...