Backups
You can get a JSON array of all the top level backup folders in your system and retrieve a zipped archive of any folder.
List all Backups
List all the backup folders in the Backup Directories
GET /api/backups
Returns an array of folders
Download A Backup
This is a two-step process. In the first step, you tell Otto what backup folder you are interested in. Otto will give you back a URL to the archive. In step two you use the URL to retrieve the Archive
Request a Backup Archive
POST /api/backups
Headers:
- Content-Type: application JSON
{"folder": "backupfolder"}Response:
returns a redirect URL that you can use to get the zip. The url expires in 1h.
Download the Archive
Get <url returned by the above request>