Surcharges
What Is a Surcharge?
A surcharge is an additional fee added to the option price. Sellers may apply surcharges for costs such as city taxes or resort fees when required on their end.
type Surcharge {
code: String
chargeType: ChargeType!
mandatory: Boolean!
price: Price!
description: String
}
info
Surcharge details may vary depending on the specific property and the Supplier's individual processes.
When are surcharges paid?
You can determine whether surcharges must be paid at the hotel (upon arrival) or in advance by checking the chargeTypes field:
- INCLUDE – The surcharge is mandatory and already included in the option price.
- EXCLUDE – The surcharge is not included in the option price and must be paid separately.
enum ChargeType {
INCLUDE
EXCLUDE
}
info
For more details, explore our API Documentation and API Reference 🚀