This API allows you to browse a Backup Set File for Revisions.
Input Parameters
id - File revision id, obtained via the Browse folder or Browse Drive API calls.
Example
{
"id": 1446
}
Note that browsing of revisions does not currently support paging at the backup agent level (only browsing a folder for files supports it).
Output Parameters
The following table provides the parameters and descriptions.
Parameter | Description |
type | Type of revision: Full or Revision (incremental/differential). |
lastModifiedDate | Last modified date and time of the backed-up file. |
size | Size of file in bytes. |
id | Integer value. ID of the revision record. Use this parameter for sending it over to the restore API to restore this record. |
name | String value. Display name of path of the revision. |
hasChildren | Boolean Indicates whether a subsequent browse at the next level is possible. |
backupTime | Time the backup of the revision is made. |
Example
Array of revisions, with the following structure:
{
"items": [
{
"type": "Base",
"lastModifiedDate": "2016-02-26T15:32:36",
"size": 261315950,
"id": 1445,
"name": "2/26/2016 5:32:36 PM",
"hasChildren": false,
"backupTime": "2016-02-26T17:32:36"
}
]
}
Example GET
GET /v2/accounts/{accountUsername}/computers/{subaccountId}/restore/filesandfolders/browse/backupset/file/{backupsetFileId}
Example Output
{
"data": {
"items": [
{
"type": "Base",
"lastModifiedDate": "2016-03-01T15:27:18",
"size": 694784,
"id": 18,
"name": "3/1/2016 10:27:18 AM",
"path": "",
"hasChildren": false,
"backupTime": "2020-03-01T10:27:18"
}
]
}
}