POST Api/Tracking/Get
Request Information
URI Parameters
None.
Body Parameters
TrackingDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| TripID | globally unique identifier |
None. |
|
| ImeiNo | string |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| Message | string |
None. |
|
| StudentID | globally unique identifier |
None. |
|
| TripOn | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"TripID": "78f85786-a5fa-45c1-800d-d5a8b198a132",
"ImeiNo": "sample string 2",
"Lat": 3.1,
"Lng": 4.1,
"Message": "sample string 5",
"StudentID": "d446a902-2b08-489a-baab-ddcf7dd9c452",
"TripOn": "2026-06-06T03:36:01.8780501+04:00"
}
application/xml, text/xml
Sample:
<TrackingDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity"> <ImeiNo>sample string 2</ImeiNo> <Lat>3.1</Lat> <Lng>4.1</Lng> <Message>sample string 5</Message> <StudentID>d446a902-2b08-489a-baab-ddcf7dd9c452</StudentID> <TripID>78f85786-a5fa-45c1-800d-d5a8b198a132</TripID> <TripOn>2026-06-06T03:36:01.8780501+04:00</TripOn> </TrackingDetail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SchoolGpsRecordLive| Name | Description | Type | Additional information |
|---|---|---|---|
| TimeStamp | date |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Angle | integer |
None. |
|
| Speed | integer |
None. |
|
| IsEngineOn | boolean |
None. |
|
| VehicleID | globally unique identifier |
None. |
|
| VehicleName | string |
None. |
|
| VehicleType | VehicleType |
None. |
|
| Driver | string |
None. |
|
| DriverID | globally unique identifier |
None. |
|
| LocationName | string |
None. |
|
| InStatusFrom | date |
None. |
|
| SchoolTripId | globally unique identifier |
None. |
|
| SchoolTripStatus | integer |
None. |
|
| EstimatedTime | time interval |
None. |
|
| EstimatedKm | decimal number |
None. |
|
| RecordType | LocationRecordType |
None. |
Response Formats
application/json, text/json
Sample:
{
"TimeStamp": "2026-06-06T03:36:01.8936716+04:00",
"Latitude": 2.1,
"Longitude": 3.1,
"Angle": 4,
"Speed": 5,
"IsEngineOn": true,
"VehicleID": "3e1078af-7c2e-4d4d-9fb7-a7d1b1a368cb",
"VehicleName": "sample string 8",
"VehicleType": 0,
"Driver": "sample string 9",
"DriverID": "4306876b-ec7a-4840-abdf-384379abef91",
"LocationName": "sample string 11",
"InStatusFrom": "2026-06-06T03:36:01.8936716+04:00",
"SchoolTripId": "3db54c1a-4471-41a6-b233-8c46041dafdb",
"SchoolTripStatus": 14,
"EstimatedTime": "00:00:00.1234567",
"EstimatedKm": 16.1,
"RecordType": 0
}
application/xml, text/xml
Sample:
<SchoolGpsRecordLive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity"> <Angle>4</Angle> <Driver>sample string 9</Driver> <DriverID>4306876b-ec7a-4840-abdf-384379abef91</DriverID> <EstimatedKm>16.1</EstimatedKm> <EstimatedTime>PT0.1234567S</EstimatedTime> <InStatusFrom>2026-06-06T03:36:01.8936716+04:00</InStatusFrom> <IsEngineOn>true</IsEngineOn> <Latitude>2.1</Latitude> <LocationName>sample string 11</LocationName> <Longitude>3.1</Longitude> <RecordType>OK</RecordType> <SchoolTripId>3db54c1a-4471-41a6-b233-8c46041dafdb</SchoolTripId> <SchoolTripStatus>14</SchoolTripStatus> <Speed>5</Speed> <TimeStamp>2026-06-06T03:36:01.8936716+04:00</TimeStamp> <VehicleID>3e1078af-7c2e-4d4d-9fb7-a7d1b1a368cb</VehicleID> <VehicleName>sample string 8</VehicleName> <VehicleType>None</VehicleType> </SchoolGpsRecordLive>