4 May 2026
HTTP API
Enhancement
ExtensibilityGraphQL

When multiple API Extensions are configured for the same resource and action, you can now control the order in which they run and ensure each Extension receives the correct resource state.

By declaring dependencies on an Extension, you instruct the platform to run the specified API Extensions first. A dependent Extension then receives the resource after all its ancestors' update actions have been applied, enabling Extensions to build on each other's results.

Extension Chaining helps you run checkout steps in a clear order. For example, you can apply discounts before tax checks, call external pricing, validate addresses, and calculate taxes before payment. Without Extension Chaining, you had to orchestrate this sequence outside the platform.

Extensions without dependencies run concurrently. Once all Extensions in a chain have completed, the platform applies all collected update actions together and persists the result. The maximum dependency chain depth is 3 layers, and each Extension can declare at most 5 direct dependencies. Circular dependencies are detected and not allowed to avoid deadlocks.

We have implemented the following changes to our REST and GraphQL schemas:

REST API
GraphQL API
  • Added dependenciesRef field to Extension type.
  • Added dependencies field to ExtensionDraft type.
  • Added setDependencies field to ExtensionUpdateAction type.
  • Added SetExtensionDependencies input object.