GET api/v1/get-discount-type?languageCode={languageCode}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
languageCode

string

Required

Response Information

Description:

Return type: Collection of DiscountType

Response Formats
[
  {
    "DiscountTypeId": 1,
    "Type": "sample string 2"
  },
  {
    "DiscountTypeId": 1,
    "Type": "sample string 2"
  }
]
[{"DiscountTypeId":1,"Type":"sample string 2"},{"DiscountTypeId":1,"Type":"sample string 2"}]
<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>