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