GET Api/SchoolTrip/Get?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": "1123ec48-16ce-455a-a3da-e57c2cedc0a5",
"ImeiNo": "sample string 2",
"Lat": 3.1,
"Lng": 4.1,
"Message": "sample string 5",
"StudentID": "945a7d7f-e806-4e86-9c36-bbf89cb70291",
"TripOn": "2026-06-06T03:44:25.5016223+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>945a7d7f-e806-4e86-9c36-bbf89cb70291</StudentID> <TripID>1123ec48-16ce-455a-a3da-e57c2cedc0a5</TripID> <TripOn>2026-06-06T03:44:25.5016223+04:00</TripOn> </TrackingDetail>