GET api/CustomerTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerType
NameDescriptionTypeAdditional information
CustomerTypeId

integer

None.

CustomerTypeDescription

string

Max length: 50

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerTypeId": 1,
    "CustomerTypeDescription": "sample string 2"
  },
  {
    "CustomerTypeId": 1,
    "CustomerTypeDescription": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <CustomerType>
    <CustomerTypeDescription>sample string 2</CustomerTypeDescription>
    <CustomerTypeId>1</CustomerTypeId>
  </CustomerType>
  <CustomerType>
    <CustomerTypeDescription>sample string 2</CustomerTypeDescription>
    <CustomerTypeId>1</CustomerTypeId>
  </CustomerType>
</ArrayOfCustomerType>