Backups
Get all list of Backups
GET /api/backups
Returns a list of all the Backups
Response
The response is an array of Backups
[
{
"file": "StudioServer__2024-02-28__15-13-03__DESKTOP-CVIC5J6.ezbackup",
"date": "2024-02-28T07:13:03.000Z",
"machine": "DESKTOP-CVIC5J6",
"size": 17031
},
{
"file": "StudioServer__2024-02-27__15-19-06__DESKTOP-CVIC5J5.ezbackup",
"date": "2024-02-27T07:19:06.000Z",
"machine": "DESKTOP-CVIC5J5",
"size": 250012
}
]
Download a Backup File
GET /api/backups/:file/download
Download the Backup file
Parameter | Value | Description |
---|---|---|
filename | name | The filename of the Backup file |
Response
The response is the content of the Backup file
Delete a Backup File
DELETE /api/backups/:file
Delete the Backup file
Parameter | Value | Description |
---|---|---|
filename | name | The filename of the Backup file |
Response
The response is the information of the Backup file
{
"file": "StudioServer__2024-02-29__18-58-16__DESKTOP-CVIC5J6.ezbackup",
"date": "2024-02-29T10:58:16.000Z",
"machine": "DESKTOP-CVIC5J6",
"size": 17031
}