Get All Backup Sets
This operation returns a list of backup sets for a client.
Either clientId or clientName is required
Query Parameters
- clientId int32
The client ID for the client. If the client ID is not known, use the GET Client Id API to retrieve it
- clientName string
The client name for the client. If the client name is not known, use the GET Client API to retrieve it
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
backupsetProperties object[]
List of backup sets in the client
modifiedTime integerLast modified time
indexSettings objectfsBackupSet object
preserveFileAccessTimes booleanThe option to prevent the file access time from being changed as a result of running data protection operations.
useDCserviceForScan booleanThe option to maintain a separate database to track changes in the files. Use this option when scanning a large number of files and folders for the backup.
planEntity object
Plan Details
planId integerplanName stringbackupSetEntity object
Backup Set Details
clientId integerClient ID
clientName stringClient Name
instanceName stringInstance Name of backupset
appName stringApplication name
backupsetId integerId et
_type_ integerInternal field
instanceId integerThe system-generated ID assigned to the instance.
backupsetName stringBackupset name
applicationId integerapplication ID
{
"backupsetProperties": [
{
"modifiedTime": 0,
"indexSettings": {},
"fsBackupSet": {
"preserveFileAccessTimes": true,
"useDCserviceForScan": true
},
"planEntity": {
"planId": 0,
"planName": "string"
},
"backupSetEntity": {
"clientId": 0,
"clientName": "string",
"instanceName": "string",
"appName": "string",
"backupsetId": 0,
"_type_": 0,
"instanceId": 0,
"backupsetName": "string",
"applicationId": 0
}
}
]
}
{
"backupsetProperties": [
{
"modifiedTime": 1487014530,
"indexSettings": {},
"fsBackupSet": {
"preserveFileAccessTimes": false,
"useDCserviceForScan": true
},
"planEntity": {},
"backupSetEntity": {
"clientId": 2,
"clientName": "greenvalley",
"instanceName": "DefaultInstanceName",
"appName": "Windows File System",
"backupsetId": 3,
"_type_": 6,
"instanceId": 1,
"backupsetName": "defaultBackupSet",
"applicationId": 33
}
}
]
}