POST api/PDR/GetV2
Request Information
URI Parameters
None.
Body Parameters
PDRouteListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| travelId | integer |
None. |
|
| lastUpdateDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"travelId": 1,
"lastUpdateDate": "2025-12-11T22:50:34.1871907-08:00"
}
application/xml, text/xml
Sample:
<PDRouteListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request"> <lastUpdateDate>2025-12-11T22:50:34.1871907-08:00</lastUpdateDate> <travelId>1</travelId> </PDRouteListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PDRouteListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| a | integer |
None. |
|
| lst | Collection of JsonPDRouteMaster |
None. |
|
| PDLocations | Collection of JsonPDLocation |
None. |
Response Formats
application/json, text/json
Sample:
{
"a": 1,
"lst": [
{
"a": 1,
"b": 2,
"c": 1,
"d": 64,
"e": "sample string 3",
"f": "sample string 4",
"g": "sample string 5",
"h": true,
"i": "2025-12-11T22:50:34.1871907-08:00"
},
{
"a": 1,
"b": 2,
"c": 1,
"d": 64,
"e": "sample string 3",
"f": "sample string 4",
"g": "sample string 5",
"h": true,
"i": "2025-12-11T22:50:34.1871907-08:00"
}
],
"PDLocations": [
{
"a": 1,
"b": 2,
"c": 3,
"d": "sample string 4",
"e": "sample string 5",
"f": true,
"g": "sample string 7"
},
{
"a": 1,
"b": 2,
"c": 3,
"d": "sample string 4",
"e": "sample string 5",
"f": true,
"g": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<PDRouteListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
<PDLocations>
<JsonPDLocation>
<a>1</a>
<b>2</b>
<c>3</c>
<d>sample string 4</d>
<e>sample string 5</e>
<f>true</f>
<g>sample string 7</g>
</JsonPDLocation>
<JsonPDLocation>
<a>1</a>
<b>2</b>
<c>3</c>
<d>sample string 4</d>
<e>sample string 5</e>
<f>true</f>
<g>sample string 7</g>
</JsonPDLocation>
</PDLocations>
<a>1</a>
<lst>
<JsonPDRouteMaster>
<a>1</a>
<b>2</b>
<c>1</c>
<d>64</d>
<e>sample string 3</e>
<f>sample string 4</f>
<g>sample string 5</g>
<h>true</h>
<i>2025-12-11T22:50:34.1871907-08:00</i>
</JsonPDRouteMaster>
<JsonPDRouteMaster>
<a>1</a>
<b>2</b>
<c>1</c>
<d>64</d>
<e>sample string 3</e>
<f>sample string 4</f>
<g>sample string 5</g>
<h>true</h>
<i>2025-12-11T22:50:34.1871907-08:00</i>
</JsonPDRouteMaster>
</lst>
</PDRouteListResponse>