GET api/General/Home/GetMenuCatByPartner?ID={ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MenuCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemCategoryID | integer |
None. |
|
| ItemCategoryName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ItemCategoryID": 1,
"ItemCategoryName": "sample string 2"
},
{
"ItemCategoryID": 1,
"ItemCategoryName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfMenuCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
<MenuCategory>
<ItemCategoryID>1</ItemCategoryID>
<ItemCategoryName>sample string 2</ItemCategoryName>
</MenuCategory>
<MenuCategory>
<ItemCategoryID>1</ItemCategoryID>
<ItemCategoryName>sample string 2</ItemCategoryName>
</MenuCategory>
</ArrayOfMenuCategory>