POST api/TradeInApp/Action/GetEstimatedPrice

Request Information

URI Parameters

None.

Body Parameters

EstimatedTradeInPriceVM
NameDescriptionTypeAdditional 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

MessageVMOfEstimatedTradeInPriceVM
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

data

EstimatedTradeInPriceVM

None.

total

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "data": {
    "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
  },
  "total": 3
}