GET company/GetSpaceUsed

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SpaceUsed
NameDescriptionTypeAdditional information
Source

string

None.

MB

decimal number

None.

Amount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Source": "sample string 1",
    "MB": 2.0,
    "Amount": 3
  },
  {
    "Source": "sample string 1",
    "MB": 2.0,
    "Amount": 3
  }
]

text/html

Sample:
[{"Source":"sample string 1","MB":2.0,"Amount":3},{"Source":"sample string 1","MB":2.0,"Amount":3}]

application/xml, text/xml

Sample:
<ArrayOfSpaceUsed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <SpaceUsed>
    <Amount>3</Amount>
    <MB>2</MB>
    <Source>sample string 1</Source>
  </SpaceUsed>
  <SpaceUsed>
    <Amount>3</Amount>
    <MB>2</MB>
    <Source>sample string 1</Source>
  </SpaceUsed>
</ArrayOfSpaceUsed>