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