POST api/User/LoadCustomerList
Request Information
URI Parameters
None.
Body Parameters
CustomerListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| customerinfoid | integer |
None. |
|
| customercode | string |
None. |
|
| pagenumber | integer |
None. |
|
| firstname | string |
None. |
|
| lastname | string |
None. |
|
| logininfoid | integer |
None. |
|
| profile_img_url | string |
None. |
|
| username | string |
None. |
|
| phoneno | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerinfoid": 1,
"customercode": "sample string 2",
"pagenumber": 3,
"firstname": "sample string 4",
"lastname": "sample string 5",
"logininfoid": 6,
"profile_img_url": "sample string 7",
"username": "sample string 8",
"phoneno": "sample string 9"
}
application/xml, text/xml
Sample:
<CustomerListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealsAPI.Models"> <customercode>sample string 2</customercode> <customerinfoid>1</customerinfoid> <firstname>sample string 4</firstname> <lastname>sample string 5</lastname> <logininfoid>6</logininfoid> <pagenumber>3</pagenumber> <phoneno>sample string 9</phoneno> <profile_img_url>sample string 7</profile_img_url> <username>sample string 8</username> </CustomerListViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealsAPI.Models"> <data /> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>