GET api/VLI/GetScheduleList

Request Information

URI Parameters

None.

Body Parameters

ScheduleListDTO
NameDescriptionTypeAdditional information
travelType

string

None.

originID

integer

None.

destinationID

integer

None.

travelDateFrom

string

None.

travelDateTo

string

None.

passengerCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "travelType": "sample string 1",
  "originID": 2,
  "destinationID": 3,
  "travelDateFrom": "sample string 4",
  "travelDateTo": "sample string 5",
  "passengerCount": 6
}

application/xml, text/xml

Sample:
<ScheduleListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VLIServices.Models.DTO">
  <destinationID>3</destinationID>
  <originID>2</originID>
  <passengerCount>6</passengerCount>
  <travelDateFrom>sample string 4</travelDateFrom>
  <travelDateTo>sample string 5</travelDateTo>
  <travelType>sample string 1</travelType>
</ScheduleListDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.