POST apiwba/bataxi/getpositionbytrackingandtrip
Request Information
URI Parameters
None.
Body Parameters
GetPositionByTrackingAndTripI| Name | Description | Type | Additional information |
|---|---|---|---|
| VehiclePlate | string |
None. |
|
| XNCode | integer |
None. |
|
| Key | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VehiclePlate": "sample string 1",
"XNCode": 2,
"Key": "sample string 3"
}
application/xml, text/xml
Sample:
<GetPositionByTrackingAndTripI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Taxi.Ba"> <Key xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 3</Key> <XNCode xmlns="http://schemas.datacontract.org/2004/07/API.Model">2</XNCode> <VehiclePlate>sample string 1</VehiclePlate> </GetPositionByTrackingAndTripI>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPositionByTrackingAndTripO| Name | Description | Type | Additional information |
|---|---|---|---|
| TrackingLatitude | decimal number |
None. |
|
| TrackingLongitude | decimal number |
None. |
|
| TrackingAddress | string |
None. |
|
| TripLatitude | decimal number |
None. |
|
| TripLongitude | decimal number |
None. |
|
| TripAddress | string |
None. |
|
| TrackingUpdatedDDate | date |
None. |
|
| TripUpdatedDDate | date |
None. |
|
| MessageResult | string |
None. |
|
| IsSucceed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"TrackingLatitude": 1.1,
"TrackingLongitude": 2.1,
"TrackingAddress": "sample string 3",
"TripLatitude": 4.1,
"TripLongitude": 5.1,
"TripAddress": "sample string 6",
"TrackingUpdatedDDate": "2026-04-08T17:33:10.4923578+07:00",
"TripUpdatedDDate": "2026-04-08T17:33:10.4923578+07:00",
"MessageResult": "sample string 9",
"IsSucceed": true
}
application/xml, text/xml
Sample:
<GetPositionByTrackingAndTripO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Taxi.Ba"> <IsSucceed xmlns="http://schemas.datacontract.org/2004/07/API.Model">true</IsSucceed> <MessageResult xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 9</MessageResult> <TrackingAddress>sample string 3</TrackingAddress> <TrackingLatitude>1.1</TrackingLatitude> <TrackingLongitude>2.1</TrackingLongitude> <TrackingUpdatedDDate>2026-04-08T17:33:10.4923578+07:00</TrackingUpdatedDDate> <TripAddress>sample string 6</TripAddress> <TripLatitude>4.1</TripLatitude> <TripLongitude>5.1</TripLongitude> <TripUpdatedDDate>2026-04-08T17:33:10.4923578+07:00</TripUpdatedDDate> </GetPositionByTrackingAndTripO>