GET api/Performance/GetVehicleData?VIN={VIN}&eventName={eventName}
Documentation for 'GetVehicleData'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| VIN | Documentation for 'VIN'. |
Define this parameter in the request URI. |
| eventName | Documentation for 'eventName'. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"VIN": "sample string 1",
"PhotoCount": 2,
"TimeForPhotoCapture": 3,
"TimeForInteriorPhoto": 4,
"TimeForExteriorPhoto": 5,
"ElapsedTime": 6,
"SkippedPhoto": 7
}
application/xml, text/xml
Sample:
<VehiclePerformacneData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BoothApp.WebAPI.Models"> <ElapsedTime>6</ElapsedTime> <PhotoCount>2</PhotoCount> <SkippedPhoto>7</SkippedPhoto> <TimeForExteriorPhoto>5</TimeForExteriorPhoto> <TimeForInteriorPhoto>4</TimeForInteriorPhoto> <TimeForPhotoCapture>3</TimeForPhotoCapture> <VIN>sample string 1</VIN> </VehiclePerformacneData>