GET v1/volumeinfos
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
VolumeInfosResource| Name | Description | Type | Additional information |
|---|---|---|---|
| VolumeInfos | Collection of VolumeInfoDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"volumeInfos": [
{
"id": 1,
"driveLetter": "sample string 2",
"capacity": 1,
"free": 1,
"server": 1
},
{
"id": 1,
"driveLetter": "sample string 2",
"capacity": 1,
"free": 1,
"server": 1
}
]
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<VolumeInfos>
<VolumeInfo>
<Capacity>1</Capacity>
<DriveLetter>sample string 2</DriveLetter>
<Free>1</Free>
<Id>1</Id>
<Server>1</Server>
</VolumeInfo>
<VolumeInfo>
<Capacity>1</Capacity>
<DriveLetter>sample string 2</DriveLetter>
<Free>1</Free>
<Id>1</Id>
<Server>1</Server>
</VolumeInfo>
</VolumeInfos>
</Resources>