GET api/PDRM?routeId={routeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| routeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PDRMapListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| a | integer |
None. |
|
| lst | Collection of JsonPDRMapping |
None. |
Response Formats
application/json, text/json
Sample:
{
"a": 1,
"lst": [
{
"a": 1,
"b": 1,
"c": 1,
"d": 1,
"e": 64,
"f": true,
"g": "sample string 2"
},
{
"a": 1,
"b": 1,
"c": 1,
"d": 1,
"e": 64,
"f": true,
"g": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<PDRMapListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
<a>1</a>
<lst>
<JsonPDRMapping>
<a>1</a>
<b>1</b>
<c>1</c>
<d>1</d>
<e>64</e>
<f>true</f>
<g>sample string 2</g>
</JsonPDRMapping>
<JsonPDRMapping>
<a>1</a>
<b>1</b>
<c>1</c>
<d>1</d>
<e>64</e>
<f>true</f>
<g>sample string 2</g>
</JsonPDRMapping>
</lst>
</PDRMapListResponse>