10.37 | November 16, 2025
Enhanced by the following feature: Support Redemption and Enrollment for non-default loyalty program.
Read more
Support Redemption and Enrollment for non-default loyalty program (FEA103734)
The Manage Rates – Loyalty Auto Enrollment API has been updated to support the assignment of a loyalty program using the parameter loyaltyProgram.
| Operation | Endpoint | Description |
|---|---|---|
| GET | /hotels/{hotelId}/rates/{code}/loyaltyAutoEnrollment | Get Hotel Loyalty Auto Enrollment |
| POST | /hotels/{hotelId}/rates/{code}/loyaltyAutoEnrollment | Create Hotel Loyalty Auto Enrollment |
| GET | /brands/{brandId}/rates/{code}/loyaltyAutoEnrollment | Get Brand Loyalty Auto Enrollment |
| POST | /brands/{brandId}/rates/{code}/loyaltyAutoEnrollment | Create Brand Loyalty Auto Enrollment |
| GET | /chains/{chainId}/rates/{code}/loyaltyAutoEnrollment | Get Chain Loyalty Auto Enrollment |
| POST | /chains/{chainId}/rates/{code}/loyaltyAutoEnrollment | Create Brand Loyalty Auto Enrollment |
Example of the GET operations:
{
"autoEnrollment": true,
"loyaltyProgram": "MyLoyalty",
"countryAssignments": [
{
"code": "US",
"name": "United States"
}
]
}Example of the POST operations
{
"geoLocationList": [
{
"code": "US"
}
],
"autoEnrollmentRate": true,
"loyaltyProgram": "MyLoyalty"
}