POST api/ClientTrip/GetTrips
Request Information
URI Parameters
None.
Body Parameters
TripDetailsListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| a | integer |
None. |
|
| b | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"a": 1,
"b": "2025-12-11T22:46:22.8625176-08:00"
}
application/xml, text/xml
Sample:
<TripDetailsListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request"> <a>1</a> <b>2025-12-11T22:46:22.8625176-08:00</b> </TripDetailsListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TripDetailsListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| a | integer |
None. |
|
| lst | Collection of JsonTripDetails |
None. |
Response Formats
application/json, text/json
Sample:
{
"a": 1,
"lst": [
{
"a": 1,
"b": "sample string 2",
"c": "sample string 3",
"d": 64,
"e": 1,
"f": 1,
"g": 1,
"h": 1,
"i": 1,
"j": 1,
"k": true,
"l": 64,
"m": true,
"n": 1,
"o": "2025-12-11T22:46:22.9718824-08:00",
"p": 1,
"q": 1,
"r": 1
},
{
"a": 1,
"b": "sample string 2",
"c": "sample string 3",
"d": 64,
"e": 1,
"f": 1,
"g": 1,
"h": 1,
"i": 1,
"j": 1,
"k": true,
"l": 64,
"m": true,
"n": 1,
"o": "2025-12-11T22:46:22.9718824-08:00",
"p": 1,
"q": 1,
"r": 1
}
]
}
application/xml, text/xml
Sample:
<TripDetailsListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
<a>1</a>
<lst>
<JsonTripDetails>
<a>1</a>
<b>sample string 2</b>
<c>sample string 3</c>
<d>64</d>
<e>1</e>
<f>1</f>
<g>1</g>
<h>1</h>
<i>1</i>
<j>1</j>
<k>true</k>
<l>64</l>
<m>true</m>
<n>1</n>
<o>2025-12-11T22:46:22.9718824-08:00</o>
<p>1</p>
<q>1</q>
<r>1</r>
</JsonTripDetails>
<JsonTripDetails>
<a>1</a>
<b>sample string 2</b>
<c>sample string 3</c>
<d>64</d>
<e>1</e>
<f>1</f>
<g>1</g>
<h>1</h>
<i>1</i>
<j>1</j>
<k>true</k>
<l>64</l>
<m>true</m>
<n>1</n>
<o>2025-12-11T22:46:22.9718824-08:00</o>
<p>1</p>
<q>1</q>
<r>1</r>
</JsonTripDetails>
</lst>
</TripDetailsListResponse>