Returns a list of all corrupted recovery points for a backup repository.
To bulk remove corrupted recovery points, note this request's response and proceed to Bulk Remove Recovery Points.
Endpoint
https://<Director_IP_address>:4443/c/router
Request Example
curl
curl --request POST \ --url https://<Director_IP_address>:4443/c/router \ --header "content-type: application/json" \ --cookie @cookies.txt \ --data "{ "action": "BackupManagement", "method": "collectSavepointRemoveList", "data": [{ "removeOption": "CORRUPTED_SAVEPOINTS", "backupRepositoryId": 2 }], "type": "rpc", "tid": 1 }"
Request Fields
Field | Type | Value(s) |
---|---|---|
action | string |
|
method | string |
|
data | array | The filtration parameters (see below) |
type | string | rpc |
tid | int | 1 |
Data
Field | Type | Description |
---|---|---|
| string | "CORRUPTED_SAVEPOINTS " |
backupRepositoryId | int | ID of the backup repository containing the recovery points |
Response Sample
Response Fields
Field | Value | Description |
---|---|---|
message | string | Message if the request failed |
where | string | Reference to the method where the problem occurred |
cause | string | Cause of failure |
data | array | Parameters of the recovery points (see below) |
data
Field | Value | Description |
---|---|---|
items | array | Recovery point list (see below) |
totalDependSavepoints | int | Number of uncorrupted recovery points dependent on the listed corrupted recovery points |
data.items
Field | Value | Description |
---|---|---|
vid | string | Recovery point VID |
| string | Backup object VID |
| string | Backup object name |
timestamp | DateTime | Date and time the recovery point was created |