GET api/Policy/CustomerTypes

API URL: https://api.alpsltd.co.uk/api/Policy/CustomerTypes

Get list of available customer types

Request Information

Authorisation Type

Basic Auth

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerType
NameDescriptionTypeAdditional information
TypeID

The customer type ID

integer
Description

Description of customer type

string

Response Formats

application/json, text/json

Sample:
[
  {
    "TypeID": 1,
    "Description": "sample string 2"
  },
  {
    "TypeID": 1,
    "Description": "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/API.Models">
  <CustomerType>
    <Description>sample string 2</Description>
    <TypeID>1</TypeID>
  </CustomerType>
  <CustomerType>
    <Description>sample string 2</Description>
    <TypeID>1</TypeID>
  </CustomerType>
</ArrayOfCustomerType>