POST api/Flight/GetCalanderFare
Request Information
URI Parameters
None.
Body Parameters
CalanderFareSearchRQName | Description | Type | Additional information |
---|---|---|---|
PaxType | PaxType |
None. |
|
TotalPax | integer |
None. |
|
Origin | string |
None. |
|
Destination | string |
None. |
|
DeptDate | date |
None. |
|
ReturnDate | date |
None. |
|
DateInterval | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "PaxType": 0, "TotalPax": 1, "Origin": "sample string 2", "Destination": "sample string 3", "DeptDate": "2025-04-03T20:13:54.2109964-04:00", "ReturnDate": "2025-04-03T20:13:54.2109964-04:00", "DateInterval": 6 }
application/xml, text/xml
Sample:
<CalanderFareSearchRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TravelAPI.Framework.Models"> <DateInterval>6</DateInterval> <DeptDate>2025-04-03T20:13:54.2109964-04:00</DeptDate> <Destination>sample string 3</Destination> <Origin>sample string 2</Origin> <PaxType>NONE</PaxType> <ReturnDate>2025-04-03T20:13:54.2109964-04:00</ReturnDate> <TotalPax>1</TotalPax> </CalanderFareSearchRQ>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.