POST api/v1/recommendations/searchservicerecommendation
Request Information
URI Parameters
None.
Body Parameters
RecommendationSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AppointmentServiceId | integer |
None. |
|
| Search | string |
None. |
|
| CustomerId | integer |
None. |
|
| EmployeeId | integer |
None. |
|
| ElementId | integer |
None. |
|
| Days | integer |
None. |
|
| DateStart | date |
None. |
|
| DateEnd | date |
None. |
|
| Status | Collection of string |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"AppointmentServiceId": 2,
"Search": "sample string 3",
"CustomerId": 4,
"EmployeeId": 5,
"ElementId": 6,
"Days": 7,
"DateStart": "2026-03-17T21:40:22.9463643-04:00",
"DateEnd": "2026-03-17T21:40:22.9463643-04:00",
"Status": [
"sample string 1",
"sample string 2"
],
"Skip": 8,
"Take": 9
}
application/xml, text/xml
Sample:
<RecommendationSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Recommendations">
<AppointmentServiceId>2</AppointmentServiceId>
<CustomerId>4</CustomerId>
<DateEnd>2026-03-17T21:40:22.9463643-04:00</DateEnd>
<DateStart>2026-03-17T21:40:22.9463643-04:00</DateStart>
<Days>7</Days>
<ElementId>6</ElementId>
<EmployeeId>5</EmployeeId>
<Id>1</Id>
<Search>sample string 3</Search>
<Skip>8</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>
<Take>9</Take>
</RecommendationSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfServiceRecommendation| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of ServiceRecommendation |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.