GET api/Toolbox/GetVehicleByVIN?vin={vin}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vin

string

Required

Body Parameters

None.

Response Information

Resource Description

VehicleVINLookupModel
NameDescriptionTypeAdditional information
Year

integer

None.

Make

string

None.

Model

string

None.

Engine

string

None.

VehicleID

globally unique identifier

None.

ResponseMessage

string

None.

ResponseCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Year": 1,
  "Make": "sample string 2",
  "Model": "sample string 3",
  "Engine": "sample string 4",
  "VehicleID": "706fa96d-5070-4b9c-ac3d-7c6e5163a32b",
  "ResponseMessage": "sample string 6",
  "ResponseCode": 7
}

application/xml, text/xml

Sample:
<VehicleVINLookupModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webapi.Models">
  <Engine>sample string 4</Engine>
  <Make>sample string 2</Make>
  <Model>sample string 3</Model>
  <ResponseCode>7</ResponseCode>
  <ResponseMessage>sample string 6</ResponseMessage>
  <VehicleID>706fa96d-5070-4b9c-ac3d-7c6e5163a32b</VehicleID>
  <Year>1</Year>
</VehicleVINLookupModel>