POST api/v1/get-PosCustomerType?clientid={clientid}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
clientid

integer

Default value is 1

Response Information

Description:

Return type: Collection of PosCustomerType

Response Formats
[
  {
    "DiscountId": 1,
    "CustomerType": "sample string 2"
  },
  {
    "DiscountId": 1,
    "CustomerType": "sample string 2"
  }
]
[{"DiscountId":1,"CustomerType":"sample string 2"},{"DiscountId":1,"CustomerType":"sample string 2"}]
<ArrayOfPosCustomerType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Discount">
  <PosCustomerType>
    <CustomerType>sample string 2</CustomerType>
    <DiscountId>1</DiscountId>
  </PosCustomerType>
  <PosCustomerType>
    <CustomerType>sample string 2</CustomerType>
    <DiscountId>1</DiscountId>
  </PosCustomerType>
</ArrayOfPosCustomerType>