10.34 | October 13, 2024
Updated to support new functionality from the following enhancements: Enhance APIs for additional Hotel Content and Time Zones, and Indicate Tax Rules on Rate Plans.
Enhance APIs for additional Hotel Content and Time Zones (FEA92756)
The REST Manage Hotels API has been enhanced to include 2 new endpoints for managing a hotel’s Local Policies.
GET | /pas/v1/hotels/{id}/localpolicies |
PUT | /pas/v1/hotels/{id}/localpolicies |
Sample GET endpoint successful response / PUT endpoint request body:
{
"adultsOnlyNoKidsAllowed": false,
"petsAllowed": false,
"petsFree": true,
"kidsStayFree": false,
"familyPlanOffered": false,
"propertySuitableForChildren": false,
"extraPersonFee": 12.3456,
"extraChildFee": 12.3456,
"cribCharge": 12.3456,
"earlyCheckout": "Early Checkout Description",
"lateCheckout": "Late Checkout Description",
"petPolicy": "Pet Policy Description",
"familyPolicy": "Family Policy Description",
"groupPolicy": "Group Policy Description",
"commissionPolicy": "Commission Policy Description",
"commissionPercentage": 25,
"guaranteePolicy": "Guarantee Policy Description",
"depositPolicy": "Deposit Policy Description",
"cancellationPolicy": "Cancellation Policy Description",
"rollawayAdultCharge": 1.23456,
"rollawayChildCharge": 1.23456,
"checkInTime": "00:30",
"checkOutTime": "20:30",
"maxChildAge": 15,
"privacyPolicyAffirmationCapture": "NoAffirmationCaptured",
"commissionProcessor": "TravelAgencyCommissionSettlement"
}
Indicate Tax Rules on Rate Plans (FEA90212)
The following 2 endpoints were enhanced to include 3 new attributes related to tax rules:
GET | /pas/v1/hotels/{id}/attributes |
PUT | /pas/v1/hotels/{id}/attributes |
Sample partial request body / response:
{
...
"displayPrePaidTax": true,
"enablePrePaidExemptionsForRates": true,
"prePaidChannels": [
{
"code": "CD",
"parentCode": "PCD",
"description": "Channel Connect"
}
]
}
10.33 | July 13, 2024
Enhancements made to support the following new attributes: Prior Day Booking with Time Limit and Hotel Uses Prio RMS.
Same Day Booking with Time Limit (FEA89605)
A new Prior Day Booking with Time Limit attribute was introduced to the following section in SynXis CRS: Administration > Hotel > Hotel Maintenance > Attributes. This attribute provides the ability to control what time reservations are cut-off from being made for the previous hotel calendar date. For example, when the time is configured for 2:00am and a guest books a reservation at 1:00am on July 2nd, they have the option to choose an arrival date of July 1st or July 2nd. Booking July 1st allows the guest to arrive prior to July 2nd’s check-in time while consuming the available inventory from July 1st.
The following endpoints have been enhanced:
Hotel Attributes | |
---|---|
GET | /v1/hotels/{id}/attributes |
PUT | /v1/hotels/{id}/attributes |
Sample GET partial response:
{
…
"priorDayBookingWithTimeLimit": 2130,
…
}
Sample PUT partial request body:
{
…
"priorDayBookingWithTimeLimit": 2130,
…
}
Prio Pricing Model (FEA95159)
A new Hotel Uses Prio RMS attribute was introduced to the following section of SynXis CRS: Administration > Hotel > Hotel Administration > Revenue Management. This attribute is used to enable functionality that is proprietary for integration with Prio RMS.
The following new endpoints have been added to support configuring this attribute for a hotel:
Hotel Admin Attributes | |
---|---|
GET | /v1/hotels/{id}/adminattributes |
PUT | /v1/hotels/{id}/adminattributes |