GET api/TransactionTravelBus/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionTravelBu| Name | Description | Type | Additional information |
|---|---|---|---|
| TravelBusID | globally unique identifier |
None. |
|
| BusID | globally unique identifier |
None. |
|
| TeacherID | globally unique identifier |
None. |
|
| SchoolID | globally unique identifier |
None. |
|
| WorkDate | date |
None. |
|
| Round | integer |
None. |
|
| Status | integer |
None. |
|
| Latitude | string |
None. |
|
| Longitude | string |
None. |
|
| LocationName | string |
None. |
|
| Speed | integer |
None. |
|
| PictureUrl | string |
None. |
|
| CreateBy | string |
None. |
|
| CreateDate | date |
None. |
|
| UpdateBy | string |
None. |
|
| UpdateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"TravelBusID": "b79c42ce-4a3a-47fb-9816-46600527db39",
"BusID": "0c9893fc-e226-4d2a-b771-d558a630ac38",
"TeacherID": "f94d0702-31e1-4161-ba36-e13e67a90ea3",
"SchoolID": "b2ec2cdf-34b1-46c2-a372-65a14aa70f9c",
"WorkDate": "2026-02-07T15:25:36.7432565+07:00",
"Round": 1,
"Status": 1,
"Latitude": "sample string 2",
"Longitude": "sample string 3",
"LocationName": "sample string 4",
"Speed": 1,
"PictureUrl": "sample string 5",
"CreateBy": "sample string 6",
"CreateDate": "2026-02-07T15:25:36.7432565+07:00",
"UpdateBy": "sample string 7",
"UpdateDate": "2026-02-07T15:25:36.7432565+07:00"
}
application/xml, text/xml
Sample:
<TransactionTravelBu xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParentAPI.Models"> <BusID>0c9893fc-e226-4d2a-b771-d558a630ac38</BusID> <CreateBy>sample string 6</CreateBy> <CreateDate>2026-02-07T15:25:36.7432565+07:00</CreateDate> <Latitude>sample string 2</Latitude> <LocationName>sample string 4</LocationName> <Longitude>sample string 3</Longitude> <PictureUrl>sample string 5</PictureUrl> <Round>1</Round> <SchoolID>b2ec2cdf-34b1-46c2-a372-65a14aa70f9c</SchoolID> <Speed>1</Speed> <Status>1</Status> <TeacherID>f94d0702-31e1-4161-ba36-e13e67a90ea3</TeacherID> <TravelBusID>b79c42ce-4a3a-47fb-9816-46600527db39</TravelBusID> <UpdateBy>sample string 7</UpdateBy> <UpdateDate>2026-02-07T15:25:36.7432565+07:00</UpdateDate> <WorkDate>2026-02-07T15:25:36.7432565+07:00</WorkDate> </TransactionTravelBu>