GET api/MasterConfig/Master/MenuCatDDByPartner?PartnerID={PartnerID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PartnerID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MenuCategoryDD
NameDescriptionTypeAdditional 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:
<ArrayOfMenuCategoryDD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
  <MenuCategoryDD>
    <ItemCategoryID>1</ItemCategoryID>
    <ItemCategoryName>sample string 2</ItemCategoryName>
  </MenuCategoryDD>
  <MenuCategoryDD>
    <ItemCategoryID>1</ItemCategoryID>
    <ItemCategoryName>sample string 2</ItemCategoryName>
  </MenuCategoryDD>
</ArrayOfMenuCategoryDD>