GET 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": "7938c3d6-2625-48f0-9510-d552806ee37c",
"TravelBusID": "2cc58032-8992-472a-9c47-18e7dfba37b0",
"StudentID": "8fff1889-0b7c-42f9-a5f0-69fb0fa9ad50",
"Status": 1,
"Remark": "sample string 2",
"CreateBy": "sample string 3",
"CreateDate": "2026-02-07T15:26:05.8088484+07:00",
"UpdateBy": "sample string 4",
"UpdateDate": "2026-02-07T15:26:05.8088484+07:00"
}
application/xml, text/xml
Sample:
<TransactionTravelStudent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParentAPI.Models"> <CreateBy>sample string 3</CreateBy> <CreateDate>2026-02-07T15:26:05.8088484+07:00</CreateDate> <Remark>sample string 2</Remark> <Status>1</Status> <StudentID>8fff1889-0b7c-42f9-a5f0-69fb0fa9ad50</StudentID> <TravelBusID>2cc58032-8992-472a-9c47-18e7dfba37b0</TravelBusID> <TravelStudentID>7938c3d6-2625-48f0-9510-d552806ee37c</TravelStudentID> <UpdateBy>sample string 4</UpdateBy> <UpdateDate>2026-02-07T15:26:05.8088484+07:00</UpdateDate> </TransactionTravelStudent>