GET api/Product/GetProductCategoryDetails

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TCOeProductCategory
NameDescriptionTypeAdditional information
ProductCategoryID

integer

None.

ProductCategory

string

None.

DefaultPageCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductCategoryID": 1,
    "ProductCategory": "sample string 2",
    "DefaultPageCount": 3
  },
  {
    "ProductCategoryID": 1,
    "ProductCategory": "sample string 2",
    "DefaultPageCount": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfTCOeProductCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HP.TCOe.DataContract">
  <TCOeProductCategory>
    <DefaultPageCount>3</DefaultPageCount>
    <ProductCategory>sample string 2</ProductCategory>
    <ProductCategoryID>1</ProductCategoryID>
  </TCOeProductCategory>
  <TCOeProductCategory>
    <DefaultPageCount>3</DefaultPageCount>
    <ProductCategory>sample string 2</ProductCategory>
    <ProductCategoryID>1</ProductCategoryID>
  </TCOeProductCategory>
</ArrayOfTCOeProductCategory>