GET forms/getStations
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GetStationsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Stations | Collection of Station |
None. |
Response Formats
application/json, text/json
Sample:
{
"Stations": [
{
"StationName": "sample string 1",
"StationCode": "sample string 2"
},
{
"StationName": "sample string 1",
"StationCode": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<GetStationsResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Stations>
<Station>
<StationName>sample string 1</StationName>
<StationCode>sample string 2</StationCode>
</Station>
<Station>
<StationName>sample string 1</StationName>
<StationCode>sample string 2</StationCode>
</Station>
</Stations>
</GetStationsResult>