Breadcrumb
- Reservation Services
- Create Reservation
- Use Cases
- Price Exemptions
Price Exemptions
A list of taxes and fees to be exempt from the reservation price.
Parameter | Description | Type | Required |
---|---|---|---|
PriceExemptionList/@StartDate | End Date for the exemption. If not specified, the stay end date will be used. | String | No |
PriceExemptionList/@EndDate | Start Date for the exemption. If not specified, the stay start date will be used. | String | No |
PriceExemptionList/@Exempt | If true, indicates that the tax or fee should be excluded from the price. | Boolean | No |
PriceExemptionList/Type/@Type | Type of a fee or tax which is exempted from the price. Values: BedTax, CityHotelFee, CityTax, CountyTax, EnergyTax, FederalTax, FoodBeverageTax, LodgingTax, MaintenanceFee, MiscellaneousFee, MiscellaneousTax, OccupancyTax, PackageFee, ResortFee, RoomTax, SalesTax, ServiceCharge, StateTax,Surcharge, TotalTax, TourismTax, VAT_GST_Tax | String | No |
PriceExemptionList/Type/ReasonCode | The exempt reason code. Must must exist in control center: Setup > Property> Tax Exempt Reasons. | String | No |
Sample Request (Partial)
"PriceExemptionList": [
{
"Exempt": true,
"Type": [
{
"Type": "StateTax",
"ReasonCode": "GOV"
}
]
}
]
The Reservation response includes an ExemptedTaxTypes node with taxes that have been exempted.
"ExemptedTaxTypes": [
{
"Breakdown": [
{
"Date": "2022-12-10T00:00:00",
"Amount": 9.53,
"ReasonCode": "GOV"
},
{
"Date": "2022-12-11T00:00:00",
"Amount": 9.53,
"ReasonCode": "GOV"
}
],
"Code": "State",
"Type": "StateTax",
"Name": "State Tax",
"Amount": 19.06
}
]