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": "b1d090e9-ee75-42c1-833c-b46d368283db"
}

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>b1d090e9-ee75-42c1-833c-b46d368283db</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>