Retrieve trip departure and product prices
GET /[context]/[contextId]/Prices
Context is either Product or Departure
For Product Context :Product ID For Departure Context :Departure ID
List of product price seasons. valid only in the context of product
Start date for price validity, based on the date that the transfer/accommodation is booked on
End date for price validity, based on the date that the transfer/accommodation is booked on
Array of prices per currency for this date range
Currency
Number of customers that this price applies to (if booked at the same time) Some products offer discounts for booking multiple customers at the same time This property will not be included for products that have a fixed price for the overall product (i.e. not per customer)
*Product: Total price for the specified number of customers (or for the product if it’s a fixed price product) *Departure: The discounted total price for the specified number of adult passengers to travel
List of departure prices. Valid only in the context of departure
RRP Element Exclusion
Kitty Price
Kitty Currency Id
Kitty Currency Code
Kitty Currency Symbol
Kitty Amount
Room type
The undiscounted price for one adult passenger to travel
Price per child (Not applicable to fixed price products) *Only applies to family trips
Total Child price *Only applies to family trips
The discounted price for one adult passenger to travel
Discounted Gross Price Per Child *Only applies to family trips
The undiscounted price for the specified number of adult passengers to travel
Total child price before discount *Only applies to family trips
Currency
Number of customers that this price applies to (if booked at the same time) Some products offer discounts for booking multiple customers at the same time This property will not be included for products that have a fixed price for the overall product (i.e. not per customer)
*Product: Total price for the specified number of customers (or for the product if it’s a fixed price product) *Departure: The discounted total price for the specified number of adult passengers to travel
Element Title
Currency Id
Currency Code
Currency Symbol
Amount
{
"prices": [
{
"effectiveFrom": "2015-01-01",
"effectiveTo": "2015-01-31",
"pricesPerCurrency": [
{
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
},
{
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
}
]
},
{
"effectiveFrom": "2015-01-01",
"effectiveTo": "2015-01-31",
"pricesPerCurrency": [
{
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
},
{
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
}
]
}
]
}
{
"prices": [
{
"roomType": "twinShare",
"perAdultPrice": 1258.0,
"perChildPrice": 1000.0,
"totalChildPrice": 1000.0,
"discountedPricePerAdult": 200.0,
"discountedPricePerChild": 100.0,
"totalAdultPriceBeforeDiscount": 1400.0,
"totalChildPriceBeforeDiscount": 1200.0,
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
},
{
"roomType": "twinShare",
"perAdultPrice": 1258.0,
"perChildPrice": 1000.0,
"totalChildPrice": 1000.0,
"discountedPricePerAdult": 200.0,
"discountedPricePerChild": 100.0,
"totalAdultPriceBeforeDiscount": 1400.0,
"totalChildPriceBeforeDiscount": 1200.0,
"currency": "AUD",
"numberOfCustomers": "3",
"total": 1258.0
}
],
"exclusions": [
{
"elementTitle": "ABC",
"currencyId": 3,
"currencyCode": "AUD",
"currencySymbol": "$",
"amount": 100.0
},
{
"elementTitle": "ABC",
"currencyId": 3,
"currencyCode": "AUD",
"currencySymbol": "$",
"amount": 100.0
}
],
"kitty": {
"kittyCurrencyId": 3,
"kittyCurrencyCode": "AUD",
"kittyCurrencySymbol": "$",
"kittyAmount": 50.0
}
}