POST api/v1/customerservices/search
Request Information
URI Parameters
None.
Body Parameters
CustomerServiceConsult| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| Status | Collection of string |
None. |
|
| StatusId | integer |
None. |
|
| ExcludePackage | boolean |
None. |
|
| ContainsVisit | boolean |
None. |
|
| ServiceId | integer |
None. |
|
| Search | string |
None. |
|
| CustomerPromotionalPackageBalanceId | integer |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"Status": [
"sample string 1",
"sample string 2"
],
"StatusId": 3,
"ExcludePackage": true,
"ContainsVisit": true,
"ServiceId": 6,
"Search": "sample string 7",
"CustomerPromotionalPackageBalanceId": 8,
"Skip": 9,
"Take": 10
}
application/xml, text/xml
Sample:
<CustomerServiceConsult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Customers">
<ContainsVisit>true</ContainsVisit>
<CustomerId>2</CustomerId>
<CustomerPromotionalPackageBalanceId>8</CustomerPromotionalPackageBalanceId>
<ExcludePackage>true</ExcludePackage>
<Id>1</Id>
<Search>sample string 7</Search>
<ServiceId>6</ServiceId>
<Skip>9</Skip>
<Status xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Status>
<StatusId>3</StatusId>
<Take>10</Take>
</CustomerServiceConsult>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfCustomerService| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CustomerService |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.