POST api/Customer/CustomersByUserId
Request Information
URI Parameters
None.
Body Parameters
SearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| PageNo | integer |
None. |
|
| PageSize | integer |
None. |
|
| SearchString | string |
None. |
|
| SortOrder | string |
None. |
|
| IsActiveCustomersOnly | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"PageNo": 2,
"PageSize": 3,
"SearchString": "sample string 4",
"SortOrder": "sample string 5",
"IsActiveCustomersOnly": true
}
application/xml, text/xml
Sample:
<SearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EditPointService.Models"> <IsActiveCustomersOnly>true</IsActiveCustomersOnly> <PageNo>2</PageNo> <PageSize>3</PageSize> <SearchString>sample string 4</SearchString> <SortOrder>sample string 5</SortOrder> <UserId>sample string 1</UserId> </SearchModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |