GET api/Common/GetHeights

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Heights
NameDescriptionTypeAdditional information
HeightId

integer

None.

Height

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "heightId": 1,
    "height": "sample string 2"
  },
  {
    "heightId": 1,
    "height": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHeights xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Heights>
    <HeightId>1</HeightId>
    <Height>sample string 2</Height>
  </Heights>
  <Heights>
    <HeightId>1</HeightId>
    <Height>sample string 2</Height>
  </Heights>
</ArrayOfHeights>