GET api/User?travelId={travelId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| travelId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TravelUserListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| a | integer |
None. |
|
| List | Collection of JsonTravelUser |
None. |
Response Formats
application/json, text/json
Sample:
{
"a": 1,
"List": [
{
"a": 1,
"b": "sample string 2",
"c": "sample string 3",
"d": "sample string 4",
"e": "2025-12-11T22:50:59.8569894-08:00",
"f": "2025-12-11T22:50:59.8569894-08:00",
"g": true,
"h": 1,
"i": true,
"j": 1,
"k": 64
},
{
"a": 1,
"b": "sample string 2",
"c": "sample string 3",
"d": "sample string 4",
"e": "2025-12-11T22:50:59.8569894-08:00",
"f": "2025-12-11T22:50:59.8569894-08:00",
"g": true,
"h": 1,
"i": true,
"j": 1,
"k": 64
}
]
}
application/xml, text/xml
Sample:
<TravelUserListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
<List>
<JsonTravelUser>
<a>1</a>
<b>sample string 2</b>
<c>sample string 3</c>
<d>sample string 4</d>
<e>2025-12-11T22:50:59.8569894-08:00</e>
<f>2025-12-11T22:50:59.8569894-08:00</f>
<g>true</g>
<h>1</h>
<i>true</i>
<j>1</j>
<k>64</k>
</JsonTravelUser>
<JsonTravelUser>
<a>1</a>
<b>sample string 2</b>
<c>sample string 3</c>
<d>sample string 4</d>
<e>2025-12-11T22:50:59.8569894-08:00</e>
<f>2025-12-11T22:50:59.8569894-08:00</f>
<g>true</g>
<h>1</h>
<i>true</i>
<j>1</j>
<k>64</k>
</JsonTravelUser>
</List>
<a>1</a>
</TravelUserListResponse>