DELETE 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": "e665db8f-e11e-4803-996c-50d7f1963b4f",
"BusID": "c22e27e2-6414-449a-984a-31b0adb863bc",
"TeacherID": "7f9c8c8a-698e-4079-b77c-f99aeb09ce2c",
"SchoolID": "915e67f5-8430-4a15-b0ca-54d48395dcf4",
"WorkDate": "2026-06-02T05:36:54.9102482+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-06-02T05:36:54.9102482+07:00",
"UpdateBy": "sample string 7",
"UpdateDate": "2026-06-02T05:36:54.9102482+07:00"
}
application/xml, text/xml
Sample:
<TransactionTravelBu xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusAPI.Models"> <BusID>c22e27e2-6414-449a-984a-31b0adb863bc</BusID> <CreateBy>sample string 6</CreateBy> <CreateDate>2026-06-02T05:36:54.9102482+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>915e67f5-8430-4a15-b0ca-54d48395dcf4</SchoolID> <Speed>1</Speed> <Status>1</Status> <TeacherID>7f9c8c8a-698e-4079-b77c-f99aeb09ce2c</TeacherID> <TravelBusID>e665db8f-e11e-4803-996c-50d7f1963b4f</TravelBusID> <UpdateBy>sample string 7</UpdateBy> <UpdateDate>2026-06-02T05:36:54.9102482+07:00</UpdateDate> <WorkDate>2026-06-02T05:36:54.9102482+07:00</WorkDate> </TransactionTravelBu>