Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: V2 Restore API Example

...

Code Block
languagetext
titleV1 Restore request
/admin/collections?action=RESTORE&
  name=myBackupName&
  location=/path/to/my/shared/drive&
  collection=myRestoredCollectionName&
  backupId=10


Code Block
languagetext
titleV2 Restore request
POST /v2/collections
{
  "restore-collection": {
    "collection": "myRestoredCollectionName",
    "name": "myBackupName",
    "location": "/path/to/my/shared/drive",
    "backupId": 10 
  } 
} 

Delete Backup API

This is a completely new Collection API to delete a backup, rotate backups and/or purge unused files left behind by a failed backup operation. It supports the following parameters:

...