GET api/v1/counterunittypes

Gets the counter unit types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CounterUnitTypeListItem
NameDescriptionTypeAdditional information
CounterUnitTypeId

integer

None.

CounterUnitTypeName

string

None.

CounterUnitTypeKeyName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CounterUnitTypeId": 1,
    "CounterUnitTypeName": "sample string 2",
    "CounterUnitTypeKeyName": "sample string 3"
  },
  {
    "CounterUnitTypeId": 1,
    "CounterUnitTypeName": "sample string 2",
    "CounterUnitTypeKeyName": "sample string 3"
  }
]

text/html

Sample:
[{"CounterUnitTypeId":1,"CounterUnitTypeName":"sample string 2","CounterUnitTypeKeyName":"sample string 3"},{"CounterUnitTypeId":1,"CounterUnitTypeName":"sample string 2","CounterUnitTypeKeyName":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfCounterUnitTypeListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Aircraft">
  <CounterUnitTypeListItem>
    <CounterUnitTypeId>1</CounterUnitTypeId>
    <CounterUnitTypeKeyName>sample string 3</CounterUnitTypeKeyName>
    <CounterUnitTypeName>sample string 2</CounterUnitTypeName>
  </CounterUnitTypeListItem>
  <CounterUnitTypeListItem>
    <CounterUnitTypeId>1</CounterUnitTypeId>
    <CounterUnitTypeKeyName>sample string 3</CounterUnitTypeKeyName>
    <CounterUnitTypeName>sample string 2</CounterUnitTypeName>
  </CounterUnitTypeListItem>
</ArrayOfCounterUnitTypeListItem>