GET api/MasterConfig/Master/MenuDDPagedList?PageNo={PageNo}&PageSize={PageSize}&SearchTerm={SearchTerm}&PartnerID={PartnerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNo | integer |
Required |
|
| PageSize | integer |
Required |
|
| SearchTerm | string |
Required |
|
| PartnerID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MenuDDPagedAPIVM| Name | Description | Type | Additional information |
|---|---|---|---|
| MenuList | Collection of MenuDD |
None. |
|
| TotalRecords | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"MenuList": [
{
"MenuID": 1,
"MenuName": "sample string 2"
},
{
"MenuID": 1,
"MenuName": "sample string 2"
}
],
"TotalRecords": 1
}
application/xml, text/xml
Sample:
<MenuDDPagedAPIVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operations.CustomModels">
<MenuList>
<MenuDD>
<MenuID>1</MenuID>
<MenuName>sample string 2</MenuName>
</MenuDD>
<MenuDD>
<MenuID>1</MenuID>
<MenuName>sample string 2</MenuName>
</MenuDD>
</MenuList>
<TotalRecords>1</TotalRecords>
</MenuDDPagedAPIVM>