POST api/GetSellingCarsPagination
List xe Ä‘ang bán
Request Information
Requires Authorization!
Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SalonAutosFilterRequest |
SalonAutosFilterRequest |
SalonAutosFilterRequest |
None. |
Body Parameters
SalonAutosFilterRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| makeId | integer |
None. |
|
| modelId | integer |
None. |
|
| minprice | integer |
None. |
|
| maxprice | integer |
None. |
|
| maxyear | integer |
None. |
|
| minyear | integer |
None. |
|
| currentPage | integer |
None. |
|
| pageSize | integer |
None. |
|
| sort | integer |
None. |
|
| type | integer |
None. |
|
| salonSalemanID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"makeId": 1,
"modelId": 2,
"minprice": 3,
"maxprice": 4,
"maxyear": 5,
"minyear": 6,
"currentPage": 7,
"pageSize": 8,
"sort": 1,
"type": 9,
"salonSalemanID": 10
}
application/xml, text/xml
Sample:
<SalonAutosFilterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Auto.AppApi.Models"> <salonSalemanID>10</salonSalemanID> <type>9</type> <currentPage>7</currentPage> <makeId>1</makeId> <maxprice>4</maxprice> <maxyear>5</maxyear> <minprice>3</minprice> <minyear>6</minyear> <modelId>2</modelId> <pageSize>8</pageSize> <sort>1</sort> </SalonAutosFilterRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
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>