quotes-controller

Submit a request for a quote

Creates a quote and an RO. Returns an ID for tracking the status of the Quote

post/api/quotes

Request body

zipCodestring

Example request

{
  "car": {
    "year": 2010,
    "make": "Acura",
    "model": "TSX",
    "subModel": "V6",
    "engine": "3.5L V6",
    "engineId": 9084,
    "baseVehicleId": 30489,
    "vin": "JH4CU2F61CL005749",
    "mileage": 10000
  },
  "services": [
    {
      "id": 12,
      "name": "Synthetic Oil Change"
    }
  ],
  "address": {
    "street": "2333 Utah Ave",
    "city": "El Segundo",
    "state": "CA",
    "zip": "90245"
  },
  "userProfile": {
    "firstName": "John",
    "lastName": "Doe",
    "email": "johndoe@repairsmith.com",
    "phone": "3332224444"
  },
  "zipCode": "90245"
}

Response

Request for Quote has successfully been submitted. Returns an ID for tracking the status of the Quote.

Changes

No recorded changes to this endpoint across all 1 revision of this API.