GET api/v1/GetSkuTypes?languageCode={languageCode}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
languageCode

string

Required

Response Information

Description:

Return type: Collection of SkuType

Response Formats
[
  {
    "SkuTypeId": 1,
    "Name": "sample string 2"
  },
  {
    "SkuTypeId": 1,
    "Name": "sample string 2"
  }
]
[{"SkuTypeId":1,"Name":"sample string 2"},{"SkuTypeId":1,"Name":"sample string 2"}]
<ArrayOfSkuType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Sku">
  <SkuType>
    <Name>sample string 2</Name>
    <SkuTypeId>1</SkuTypeId>
  </SkuType>
  <SkuType>
    <Name>sample string 2</Name>
    <SkuTypeId>1</SkuTypeId>
  </SkuType>
</ArrayOfSkuType>