POST api/ListSalon
Tìm kiếm salon list
Request Information
Requires Authorization!
Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SalonRequestListModel |
SalonRequestListModel |
SalonRequestListModel |
None. |
Body Parameters
SalonRequestListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| keywords | string |
None. |
|
| secondHand | integer |
None. |
|
| cityId | integer |
None. |
|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"keywords": "sample string 1",
"secondHand": 2,
"cityId": 3,
"pageIndex": 4,
"pageSize": 5
}
application/xml, text/xml
Sample:
<SalonRequestListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Auto.AppApi.Models"> <pageIndex>4</pageIndex> <pageSize>5</pageSize> <cityId>3</cityId> <keywords>sample string 1</keywords> <secondHand>2</secondHand> </SalonRequestListModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataReturnObj
DataReturnObj| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"Data": "sample string 3"
}
application/xml, text/xml
Sample:
<DataReturnObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Auto.AppApi.Models"> <Data>sample string 3</Data> <Message>sample string 2</Message> <Status>1</Status> </DataReturnObj>