GET Api/SchoolTrip?clientID={clientID}&tripID={tripID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID | globally unique identifier |
Required |
|
| tripID | 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": "c6d073da-e47b-4c82-93b6-0d6862efe95e",
"ImeiNo": "sample string 2",
"Lat": 3.1,
"Lng": 4.1,
"Message": "sample string 5",
"StudentID": "025b0a39-eede-470c-8d69-c438da5b0f3b",
"TripOn": "2026-06-06T03:43:39.6109282+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>025b0a39-eede-470c-8d69-c438da5b0f3b</StudentID> <TripID>c6d073da-e47b-4c82-93b6-0d6862efe95e</TripID> <TripOn>2026-06-06T03:43:39.6109282+04:00</TripOn> </TrackingDetail>