POST api/ObtenerCotizacionTrip

Request Information

URI Parameters

None.

Body Parameters

requestTripCotizador
NameDescriptionTypeAdditional information
Origen

string

None.

Destino

string

None.

FechaVuelo

string

None.

Pasajeros

integer

None.

Aeronave

string

None.

Request Formats

application/json, text/json

Sample:
{
  "origen": "sample string 1",
  "destino": "sample string 2",
  "fechaVuelo": "sample string 3",
  "pasajeros": 4,
  "aeronave": "sample string 5"
}

application/xml, text/xml

Sample:
<requestTripCotizador xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiAerolineasCloud.Objects.Request">
  <Aeronave>sample string 5</Aeronave>
  <Destino>sample string 2</Destino>
  <FechaVuelo>sample string 3</FechaVuelo>
  <Origen>sample string 1</Origen>
  <Pasajeros>4</Pasajeros>
</requestTripCotizador>

multipart/form-data

Sample:
<requestTripCotizador xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiAerolineasCloud.Objects.Request"><Aeronave>sample string 5</Aeronave><Destino>sample string 2</Destino><FechaVuelo>sample string 3</FechaVuelo><Origen>sample string 1</Origen><Pasajeros>4</Pasajeros></requestTripCotizador>

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, multipart/form-data

Sample:

Sample not available.