DELETE api/TransactionTravelStudents/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionTravelStudent| Name | Description | Type | Additional information |
|---|---|---|---|
| TravelStudentID | globally unique identifier |
None. |
|
| TravelBusID | globally unique identifier |
None. |
|
| StudentID | globally unique identifier |
None. |
|
| Status | integer |
None. |
|
| Remark | string |
None. |
|
| CreateBy | string |
None. |
|
| CreateDate | date |
None. |
|
| UpdateBy | string |
None. |
|
| UpdateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"TravelStudentID": "960c1b61-cd3e-4d2d-93d8-319156d6850a",
"TravelBusID": "7aa43f29-d5a0-49ea-9595-5bac18b5fc05",
"StudentID": "8e4138a7-2bd6-490a-826a-d9cde0d9af31",
"Status": 1,
"Remark": "sample string 2",
"CreateBy": "sample string 3",
"CreateDate": "2026-02-07T15:30:38.1659464+07:00",
"UpdateBy": "sample string 4",
"UpdateDate": "2026-02-07T15:30:38.1659464+07:00"
}
application/xml, text/xml
Sample:
<TransactionTravelStudent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusAPI.Models"> <CreateBy>sample string 3</CreateBy> <CreateDate>2026-02-07T15:30:38.1659464+07:00</CreateDate> <Remark>sample string 2</Remark> <Status>1</Status> <StudentID>8e4138a7-2bd6-490a-826a-d9cde0d9af31</StudentID> <TravelBusID>7aa43f29-d5a0-49ea-9595-5bac18b5fc05</TravelBusID> <TravelStudentID>960c1b61-cd3e-4d2d-93d8-319156d6850a</TravelStudentID> <UpdateBy>sample string 4</UpdateBy> <UpdateDate>2026-02-07T15:30:38.1659464+07:00</UpdateDate> </TransactionTravelStudent>