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