POST api/v1/ProductGroup

Retrieve the list of product groups.
Each group has a level, 1-4, a code and description

Request Information

URI Parameters

None.

Body Parameters

Params
NameDescriptionTypeAdditional information
apiKey

Please contact Caliq support to get your key

string

Required

Max length: 30

Request Formats

application/json, text/json

Sample:
{
  "apiKey": "sample string 1"
}

application/xml, text/xml

Sample:
<Params xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <apiKey>sample string 1</apiKey>
</Params>

Response Information

Resource Description

Returns:
200 OK Returns a list of active product groups as XML or JSON
400 Bad Request - parameters supplied cannot be properly interpreted
401 Not Authorised if supplied api key is not valid
204 No Content if there are no matching records in Caliq
503 Service Unavailable

ProdGroups
NameDescriptionTypeAdditional information
ProdGroupList

Collection of ProdGroup

None.

Response Formats

application/json, text/json

Sample:
{
  "ProdGroupList": [
    {
      "Level": 1,
      "Code": "sample string 2",
      "Description": "sample string 3"
    },
    {
      "Level": 1,
      "Code": "sample string 2",
      "Description": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ProdGroups xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ProdGroup>
    <Level>1</Level>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
  </ProdGroup>
  <ProdGroup>
    <Level>1</Level>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
  </ProdGroup>
</ProdGroups>