POST
api/v1/get-PosCustomerType?clientid={clientid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientid | integer |
Default value is 1 |
Response Information
Description:
Return type: Collection of PosCustomerType
Response Formats
application/json, text/json
[
{
"DiscountId": 1,
"CustomerType": "sample string 2"
},
{
"DiscountId": 1,
"CustomerType": "sample string 2"
}
]
text/html
[{"DiscountId":1,"CustomerType":"sample string 2"},{"DiscountId":1,"CustomerType":"sample string 2"}]
application/xml, text/xml
<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>
