GET api/PortalAdmin/Request/CustomerList?PortalId={PortalId}&Keyword={Keyword}&CurrentPage={CurrentPage}&RowPerPage={RowPerPage}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PortalId | integer |
Required |
|
| Keyword | string |
None. |
|
| CurrentPage | integer |
Required |
|
| RowPerPage | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FullName | string |
None. |
|
| Phone | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"fullName": "sample string 2",
"phone": "sample string 3"
},
{
"id": 1,
"fullName": "sample string 2",
"phone": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Portal">
<CustomerListModel>
<FullName>sample string 2</FullName>
<Id>1</Id>
<Phone>sample string 3</Phone>
</CustomerListModel>
<CustomerListModel>
<FullName>sample string 2</FullName>
<Id>1</Id>
<Phone>sample string 3</Phone>
</CustomerListModel>
</ArrayOfCustomerListModel>