The API allows you list and view restored files.
Returns list of restored files filtered by specified query parameters.
| name | type | description |
|---|---|---|
| task | query |
| media type | data type | description |
|---|---|---|
| application/json | array of RestoredFileDetails (JSON) | list of restored files filtered by specified query parameters |
GET /restored-file
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
} ]
Get a single restored file.
| name | type | description |
|---|---|---|
| guid | path | specify local unique identifier for restored file (use by vProtect) |
| media type | data type | description |
|---|---|---|
| application/json | RestoredFileDetails (JSON) | restored file details |
GET /restored-file/{guid}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}