GET api/ItemCategory/GetAllItemCategorys
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ItemCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemCategoryCode | integer |
None. |
|
| ItemCategoryName | string |
String length: inclusive between 0 and 100 |
Response Formats
application/json, text/json
Sample:
[
{
"ItemCategoryCode": 1,
"ItemCategoryName": "sample string 2"
},
{
"ItemCategoryCode": 1,
"ItemCategoryName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfItemCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERPAPIV1.Models">
<ItemCategory>
<ItemCategoryCode>1</ItemCategoryCode>
<ItemCategoryName>sample string 2</ItemCategoryName>
</ItemCategory>
<ItemCategory>
<ItemCategoryCode>1</ItemCategoryCode>
<ItemCategoryName>sample string 2</ItemCategoryName>
</ItemCategory>
</ArrayOfItemCategory>