11 Versioning
All APIs are exposed by the Oracle Hospitality Integration Platform version at the URI level. This means that the URI includes /v0, /v1, /v2, and so on.
The current versioning strategy avoids versions beyond v1 by introducing non-breaking changes and only introducing major changes when necessary.
In the future, versions beyond v1 might be considered.
As any piece of software, our APIs change and mature over time. Inevitably, a given API operation is more mature in later versions of the product, regardless of the version given to the operation. For example, if an API operation has a bug fixed in vLatest, then the API call might hit that bug when calling an older version of the product. Each API producing product issues its own Release Readiness Guide (for example, the OPERA Cloud Release Readiness Guide) that outlines the API bugs fixed in each version. If the API operation being called is affected by a bug in an older version of OPERA Cloud, then the hotelier should upgrade to receive the bug fix.
What is a non-breaking change?
-
Adding new API operations.
-
Adding new optional request parameters to existing API operations.
-
Adding new properties to existing API responses.
-
Adding new response headers.
-
Changing the order of properties in existing API responses.
-
Updating descriptions of API operations or properties.
-
Adding or changing examples.
-
Increasing the length of a string parameter.
-
Changing from a more restrictive to a less restrictive numeric datatype for example, "number" to "integer" or "float" to "number").
-
Deprecating an API operation.
-
Adding items to or removing items from an ENUM.
-
If using a strongly typed language, such as Java, ensure that code is resilient to changes in ENUMs. For example, by specifying the ‘enumUnknownDefaultCase’ parameter in the Java OpenAPI Generator or the ‘READ_UNKNOWN_ENUM_VALUES_AS_NULL’ parameter in Jackson in Java.
-
-
Adding new events.
-
Ensure your Streaming WebSocket client and your REST API event parsing code gracefully handles unfamiliar events.
-
What is a major change?
-
Removing an entire API operation.
-
Removing or renaming a request parameter.
-
Removing or renaming a response parameter.
-
Adding a new required request parameter.
-
Making a previously optional parameter required.
-
Changing the datatype of a parameter or response field (for example, from integer to string).
-
Adding a new validation rule to an existing request parameter.
-
Changing authentication or authorization requirements.
-
Enforcing new or lower limits on request parameters.
-
Changing how resources are accessed. For example, requiring that salesManagerGoals are accessed via salesManagers.
-
Request body size changes. For example, allowing a whole profile (including children) in the request body to allowing only summary profile data in the request body.
-
Adding validation to allow fewer items in an array in the request body.
-
Response body size changes. For example, returning a subset of a profile where previously the API returned the full profile or vice versa. Or changing the number of items that are returned when no pagination parameters are specified.
-
Changing response error codes.
How can I find out about major changes?
Refer to the following Customer Support article: Oracle Hospitality Integration Platform Upcoming Major Changes. To be notified when the Upcoming Major Changes log is updated, click the Subscribe button on that page.
Subscribe to the Oracle Hospitality Github repository to receive updates on the major changes in new releases.
Regularly check the Upcoming Major Changes section of this user guide.
How do I know when new APIs are released?
The Oracle Hospitality Integration Platform Patch Release Notes list all new and deprecated APIs. To be notified when a new patch release note is issued, click the Subscribe button on that page.
Subscribe to the Oracle Hospitality Github repository to receive updates on the major changes for new releases.
Further, each Oracle Hospitality product publishes a Release Readiness Guide that also lists changes to APIs and new APIs. For example, the OPERA Cloud 24.1 Release Readiness Guide lists the new API features included in OPERA Cloud 24.1.
Deprecation Schedules
Oracle Hospitality APIs are deprecated at the level of the operation and no lower.
A major change announcement is issued as soon as possible once an API operation will be deprecated. This major change announcement includes details of the sunset date.

The Oracle Hospitality Integration Platform exposes APIs from multiple SaaS products, and each SaaS product is versioned (for example, OPERA Cloud 23.5). This SaaS product version number can be read in the API specifications file.
When developing and listing integrations on the marketplace, it is important to be clear about which version of the SaaS product was used during the development.

How to adapt to deprecation notices
-
Read the major change announcement and determine whether the change affects any APIs you current use or intend to use.
-
If you are affected by a major change, take immediate action in the following environments:
-
For integration partners, a sandbox environment.
-
For customers, a UAT environment.
-
-
Verify that after taking action, the integration works as needed.
-
Wait for the upgrade to the affected version of the SaaS environment.
-
For integration partners, test this in the sandbox environment
-
For customers, test this in a UAT environment. Note that production environments are quickly updated after UAT environments, so prioritize this testing as soon as the UAT environment is upgraded.
-
-
Deploy the changes to production environments before they are updated to the affected version of the SaaS product.
Example of adapting to a deprecation notice:
-
Read the major change announcement for April 2024 and determine whether your integration is affected. Continue with the below steps if it was affected:
-
Immediately make the changes as outlined in the Call to Action, and test these changes in a sandbox or a UAT environment.
-
Test the whole integration still works even with the changes.
-
Wait for the upgrade to OPERA Cloud 24.4 in the following environments:
-
For integration partners, a sandbox environment. Be sure to test these changes.
-
For customers, a UAT environment. Be sure to test these changes.
-
-
Deploy the changed integration and make it live before OPERA Cloud 24.5 is deployed to any production environment.