This API allows you to GET List of Backup Sets with Restorable Revisions
Input Parameters
None.
Output Parameters
The following table provides the parameters and descriptions.
Parameter | Description |
type | Type of record for this API call, only BackupSet is possible. |
id | Integer value. ID of the record. Use this parameter for subsequent browse requests, for the next level. |
name | String value. Name of the backup set. |
hasChildren | Boolean. Indicates whether a subsequent browse at the Folder or File level is possible. |
Example
Array of backup sets that contain restorable revisions, with the following structure:
{
"type": "BackupSet",
"items": [
{
"type": "BackupSet",
"id": 17,
"name": "BACKUP SET NAME",
"hasChildren": true,
}
]
}
Example GET
GET /v2/accounts/{accountUsername}/computers/{subaccountId}/restore/filesandfolders/browse/backupset/list
Example Output
{
"data": {
"items": [
{
"type": "BackupSet",
"id": 5,
"name": "Files and Folders 1",
"path": "",
"hasChildren": true,
"backupTime": "0001-01-01T00:00:00"
}
]
}
}