API Versioning & lifecycle
The fulfillmenttools API is considered versionless. That means that our API evolves in a backward-compatible way. The following changes, are considered to be backward-compatible:
Adding new API resources.
Adding new optional request parameters to existing API methods.
Adding new properties to existing API responses.
Changing the order of properties in existing API responses.
Adding values to enums (see Enum Handling)
All endpoints, fields, and types in our APIs have a lifecycle ranging from Alpha to Beta to GA (generally available). Additionally, we may deprecate certain functionality in our API.
We mark endpoints, types, fields, or features by their release life cycle. These are included as flags (see details in the corresponding sections). Consider the following example:
In this case, the facility endpoint and entity are both generally available. However, the description
field is still under construction and may change. When working with the facility endpoint, ensure that the information provided in the description
field is not integrated into any mission-critical components that may be sensitive to changes.
Lifecycle Overview
Alpha
❌
common
no notifications
Beta
❌
rarely
no later than two weeks before breaking changes
GA
️✅
❎
-
Deprecated
️✅ if Endpoint was previously GA
❎ if Endpoint was previously GA
-
Alpha
Alpha endpoints are currently in development and might not be fully functional. Therefore, breaking changes (both semantic and syntactical) are common. We change these endpoints without communication. Additionally, alpha endpoints are not contained in our SLAs.
Please contact us if you want to use endpoints marked with the Alpha tag.
Beta
Endpoints with the Beta life cycle state are more mature but still under active development. We try to prevent breaking changes. Nevertheless, breaking changes are possible in rare cases. There already exists functionality at these endpoints, but we don't cover these in our SLAs. Breaking changes are communicated to clients two weeks before the change.
Please contact us if you want to use endpoints marked with the Beta tag.
GA (General Availability)
Endpoints without any flag are production-ready and stable endpoints. We serve these endpoints within our SLAs.
Deprecated
In some cases, we might deprecate endpoints or attributes. Deprecated endpoints contain hints to new endpoints, replacing their functionality or providing a newer feature version. We monitor deprecated endpoints to ensure we only remove functionality when nobody uses it. Deprecated endpoints are still served within our SLAs if they had previously made it to GA.
Breaking Changes
When an endpoint is under active development (e.g., marked as Alpha or Beta), we might change its semantic and/or syntactic behavior. You will find Alpha or Beta flags on resources, types (or part of types), and other places under development. If you encounter such a flag, it means the following:
This endpoint, type, or field might be subject to breaking changes.
It might not be available at all times.
It could disappear without specific warning.
It currently does not fall under our SLA regulations.
Enum handling
Our schemas use plenty of enums, for example, for status use. Please be aware that adding a value to it is considered a nonbreaking change:
However, the tooling around this use of enumerations varies: A code generator will most likely produce enums that cannot contain values different from the one described. If you are handling enums, the best practice is to map unknown enum values to ones you recognize or that yield an error.
Last updated