POST product/GetItemCategoryList

Request Information

URI Parameters

None.

Body Parameters

iGetItemCategoryList
NameDescriptionTypeAdditional information
companyID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "companyID": "a3223480-a4ab-49d0-b54d-e1f530a1c8b9"
}

application/xml, text/xml

Sample:
<iGetItemCategoryList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model">
  <companyID>a3223480-a4ab-49d0-b54d-e1f530a1c8b9</companyID>
</iGetItemCategoryList>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

oGetItemCategoryListResponse
NameDescriptionTypeAdditional information
Records

Collection of oGetItemCategoryList

None.

StatusCode

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Records": [
    {
      "categoryID": "sample string 1",
      "categoryName": "sample string 2",
      "categoryStatus": "sample string 3",
      "isNew": true
    },
    {
      "categoryID": "sample string 1",
      "categoryName": "sample string 2",
      "categoryStatus": "sample string 3",
      "isNew": true
    }
  ],
  "StatusCode": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<oGetItemCategoryListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WNTY_DAT.Model">
  <Message>sample string 2</Message>
  <Records>
    <oGetItemCategoryList>
      <categoryID>sample string 1</categoryID>
      <categoryName>sample string 2</categoryName>
      <categoryStatus>sample string 3</categoryStatus>
      <isNew>true</isNew>
    </oGetItemCategoryList>
    <oGetItemCategoryList>
      <categoryID>sample string 1</categoryID>
      <categoryName>sample string 2</categoryName>
      <categoryStatus>sample string 3</categoryStatus>
      <isNew>true</isNew>
    </oGetItemCategoryList>
  </Records>
  <StatusCode>true</StatusCode>
</oGetItemCategoryListResponse>