GET api/Make?regyear={regyear}

Get a list of all vehicle makes available for the specified year

Request Information

URI Parameters

NameDescriptionTypeAdditional information
regyear

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VehicleMakes
NameDescriptionTypeAdditional information
Make

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Make": "sample string 1"
  },
  {
    "Make": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfVehicleMakes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VehicleValuesApi2">
  <VehicleMakes>
    <Make>sample string 1</Make>
  </VehicleMakes>
  <VehicleMakes>
    <Make>sample string 1</Make>
  </VehicleMakes>
</ArrayOfVehicleMakes>