GET api/SubTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SubTypes
NameDescriptionTypeAdditional information
SubTypeID

integer

None.

SubTypeName

string

None.

SubTypeNavName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SubTypeID": 1,
    "SubTypeName": "sample string 2",
    "SubTypeNavName": "sample string 3"
  },
  {
    "SubTypeID": 1,
    "SubTypeName": "sample string 2",
    "SubTypeNavName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CenturyAPI">
  <SubTypes>
    <SubTypeID>1</SubTypeID>
    <SubTypeName>sample string 2</SubTypeName>
    <SubTypeNavName>sample string 3</SubTypeNavName>
  </SubTypes>
  <SubTypes>
    <SubTypeID>1</SubTypeID>
    <SubTypeName>sample string 2</SubTypeName>
    <SubTypeNavName>sample string 3</SubTypeNavName>
  </SubTypes>
</ArrayOfSubTypes>