POST api/TradeInApp/Action/GetSPEstimatedPrice
Request Information
URI Parameters
None.
Body Parameters
EstimatedTradeInPriceVM| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleMake | string |
None. |
|
| VehicleModel | string |
None. |
|
| VehicleModelDescription | string |
None. |
|
| VehicleYear | integer |
None. |
|
| MileageKM | decimal number |
None. |
|
| VehicleCondition | string |
None. |
|
| MinValue | decimal number |
None. |
|
| MaxValue | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"VehicleMake": "sample string 1",
"VehicleModel": "sample string 2",
"VehicleModelDescription": "sample string 3",
"VehicleYear": 1,
"MileageKM": 4.0,
"VehicleCondition": "sample string 5",
"MinValue": 6.0,
"MaxValue": 7.0
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MessageVMOfListOfEstimatedTradeInPriceSPVM| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| data | Collection of EstimatedTradeInPriceSPVM |
None. |
|
| total | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"data": [
{
"DealerPrice": "sample string 1",
"Percentile_Avg": "sample string 2",
"Percentile_Type": "sample string 3"
},
{
"DealerPrice": "sample string 1",
"Percentile_Avg": "sample string 2",
"Percentile_Type": "sample string 3"
}
],
"total": 3
}