POST v1/GetVehicleRoute

Get vehicle route based on plate number and date time range. (Replace: LoadVehicleRouteByDate and LoadVehicleRouteByDate2)

Request Information

URI Parameters

None.

Body Parameters

GetVehicleRouteModel
NameDescriptionTypeAdditional information
StartTime

string

Required

EndTime

string

Required

PlateNumber

string

Required

Request Formats

application/json, text/json

Sample:
{
  "StartTime": "sample string 1",
  "EndTime": "sample string 2",
  "PlateNumber": "sample string 3"
}

application/xml, text/xml

Sample:
<ApiRequest.GetVehicleRouteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiTracker.Models.Struct">
  <PlateNumber>sample string 3</PlateNumber>
  <EndTime>sample string 2</EndTime>
  <StartTime>sample string 1</StartTime>
</ApiRequest.GetVehicleRouteModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.