GET Api/Tracking?clientID={clientID}&schoolID={schoolID}&studentID={studentID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID | globally unique identifier |
Required |
|
| schoolID | globally unique identifier |
Required |
|
| studentID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"TripID": "432b491c-ceca-4179-8976-315f9fdc10bc",
"ImeiNo": "sample string 2",
"Lat": 3.1,
"Lng": 4.1,
"Message": "sample string 5",
"StudentID": "4f7c4c34-9999-44d1-9781-56add5cef5d5",
"TripOn": "2026-06-06T03:40:31.0196118+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>4f7c4c34-9999-44d1-9781-56add5cef5d5</StudentID> <TripID>432b491c-ceca-4179-8976-315f9fdc10bc</TripID> <TripOn>2026-06-06T03:40:31.0196118+04:00</TripOn> </TrackingDetail>