GET api/Pricebook
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Categories| Name | Description | Type | Additional information | 
|---|---|---|---|
| SeqNo | integer | None. | |
| Category | string | None. | |
| USEFLAG | integer | None. | |
| xMOd | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "SeqNo": 1,
    "Category": "sample string 2",
    "USEFLAG": 1,
    "xMOd": 1
  },
  {
    "SeqNo": 1,
    "Category": "sample string 2",
    "USEFLAG": 1,
    "xMOd": 1
  }
]
        text/html
            Sample:
        
[{"SeqNo":1,"Category":"sample string 2","USEFLAG":1,"xMOd":1},{"SeqNo":1,"Category":"sample string 2","USEFLAG":1,"xMOd":1}]
        application/xml, text/xml
            Sample:
<ArrayOfCategories xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iHubLibrary.DB.Models">
  <Categories>
    <Category>sample string 2</Category>
    <SeqNo>1</SeqNo>
    <USEFLAG>1</USEFLAG>
    <xMOd>1</xMOd>
  </Categories>
  <Categories>
    <Category>sample string 2</Category>
    <SeqNo>1</SeqNo>
    <USEFLAG>1</USEFLAG>
    <xMOd>1</xMOd>
  </Categories>
</ArrayOfCategories>