GET api/TransportPlan?vehicleNo={vehicleNo}&planID={planID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| vehicleNo | string |
Required |
|
| planID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LatLongModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Lat | decimal number |
None. |
|
| Long | decimal number |
None. |
|
| CarStatus | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Lat": 1.1,
"Long": 2.1,
"CarStatus": 3
}
application/xml, text/xml
Sample:
<LatLongModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <CarStatus>3</CarStatus> <Lat>1.1</Lat> <Long>2.1</Long> </LatLongModel>