OCAPI Versioning and Deprecation Policy
This document describes the versioning and deprecation policy for the Open Commerce API (OCAPI). This policy is designed to
- Be easy for customers and developers to understand
- Allow Commerce Cloud Digital to make design changes to the API without affecting existing client applications
- Allow Digital to delete outdated or unsupported features
A new OCAPI version is created whenever Digital:
- Adds a new document property, resource parameter, or resource.
- Modifies the type of a document property, resource parameter, or resource.
- Modifies the name of a document property, resource parameter, or resource.
- Deletes a document property, resource parameter, or resource.
Whenever Digital creates a new OCAPI version, it also deprecates the former OCAPI version. This encourages customers and developers to:
- Implement new client applications on top of the current OCAPI version.
- Upgrade existing applications on a regular basis.
Digital constructs OCAPI version numbers by taking the last two digits of the current year ("24" for 2024), adding a period (.), and adding consecutive numbers, starting with 1. For example, "24.1" is the first version of 2024.
Depending on the context, the version number is specified differently:
- In URLs, the following syntax is used:
v<year>_<consecutive number>
. For example: "v24_5". - In documents, the following syntax is used:
<year>.<consecutive number>
. For example: "24.5".
Version State | Support | Description |
---|---|---|
Current | Yes | The newest version (24.5). Always develop new applications using the current version. Commerce Cloud ensures that an OCAPI version is supported for at least two years. During this period Digital ensures the stability and backwards-compatibility of the version enclosed feature set. |
Deprecated | Yes | Digital deprecates an OCAPI version when a new version is published. Support, stability, and backwards-compatibility are ensured for up to two years after the publish date. |
Obsolete | No | Deprecated versions become obsolete automatically two years after being published. Digital deletes obsolete versions without further notice. |
OCAPI version metadata currently provides a list of version numbers, along with a state
enum set to one of the following values: current
, deprecated
, obsolete