POST api/Station/QueryStations

Request Information

URI Parameters

None.

Body Parameters

StationQueryITO
NameDescriptionTypeAdditional information
stationName

string

None.

orderByField

string

None.

page

integer

None.

perPage

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "stationName": "sample string 1",
  "orderByField": "sample string 2",
  "page": 3,
  "perPage": 4
}

application/xml, text/xml

Sample:
<StationQueryITO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppService.Models.ITO">
  <orderByField xmlns="http://schemas.datacontract.org/2004/07/">sample string 2</orderByField>
  <page xmlns="http://schemas.datacontract.org/2004/07/">3</page>
  <perPage xmlns="http://schemas.datacontract.org/2004/07/">4</perPage>
  <stationName>sample string 1</stationName>
</StationQueryITO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'StationQueryITO'.

Response Information

Resource Description

ResultDTO
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

TotalCount

integer

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:

Sample not available.