GET
api/v1/get-discount-type?languageCode={languageCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| languageCode | string |
Required |
Response Information
Description:
Return type: Collection of DiscountType
Response Formats
application/json, text/json
[
{
"DiscountTypeId": 1,
"Type": "sample string 2"
},
{
"DiscountTypeId": 1,
"Type": "sample string 2"
}
]
text/html
[{"DiscountTypeId":1,"Type":"sample string 2"},{"DiscountTypeId":1,"Type":"sample string 2"}]
application/xml, text/xml
<ArrayOfDiscountType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Discount">
<DiscountType>
<DiscountTypeId>1</DiscountTypeId>
<Type>sample string 2</Type>
</DiscountType>
<DiscountType>
<DiscountTypeId>1</DiscountTypeId>
<Type>sample string 2</Type>
</DiscountType>
</ArrayOfDiscountType>
