GET api2/TaxiLocation?vrm={vrm}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| vrm | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TaxiLocationDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Car | integer |
None. |
|
| CarType | integer |
None. |
|
| CarStyle | integer |
None. |
|
| Fleet | integer |
None. |
|
| VRM | string |
None. |
|
| Customer | integer |
None. |
|
| CustomerName | string |
None. |
|
| CustomerPhone | string |
None. |
|
| CarShift | integer |
None. |
|
| SubCon | boolean |
None. |
|
| Time | date |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| Speed | integer |
None. |
|
| Direction | integer |
None. |
|
| Mileage | integer |
None. |
|
| Hired | boolean |
None. |
|
| ImgUrl | string |
None. |
|
| ACC | boolean |
None. |
|
| Params | string |
None. |
|
| LatestOnline | date |
None. |
|
| DropOffLocation | string |
None. |
|
| GPSOutdated | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Car": 1,
"CarType": 2,
"CarStyle": 3,
"Fleet": 4,
"VRM": "sample string 5",
"Customer": 6,
"CustomerName": "sample string 7",
"CustomerPhone": "sample string 8",
"CarShift": 9,
"SubCon": true,
"Time": "2025-12-14T03:38:23.3100098+00:00",
"Lat": 11.0,
"Lng": 12.0,
"Speed": 13,
"Direction": 14,
"Mileage": 15,
"Hired": true,
"ImgUrl": "sample string 17",
"ACC": true,
"Params": "sample string 19",
"LatestOnline": "2025-12-14T03:38:23.3100098+00:00",
"DropOffLocation": "sample string 20",
"GPSOutdated": true
}
application/xml, text/xml
Sample:
<TaxiLocationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MIS.Data.DTO"> <ACC>true</ACC> <Car>1</Car> <CarShift>9</CarShift> <CarStyle>3</CarStyle> <CarType>2</CarType> <Customer>6</Customer> <CustomerName>sample string 7</CustomerName> <CustomerPhone>sample string 8</CustomerPhone> <Direction>14</Direction> <DropOffLocation>sample string 20</DropOffLocation> <Fleet>4</Fleet> <GPSOutdated>true</GPSOutdated> <Hired>true</Hired> <ImgUrl>sample string 17</ImgUrl> <Lat>11</Lat> <LatestOnline>2025-12-14T03:38:23.3100098+00:00</LatestOnline> <Lng>12</Lng> <Mileage>15</Mileage> <Params>sample string 19</Params> <Speed>13</Speed> <SubCon>true</SubCon> <Time>2025-12-14T03:38:23.3100098+00:00</Time> <VRM>sample string 5</VRM> </TaxiLocationDTO>