In a world where customers navigate through seemingly unlimited options, merchants face the challenge of constantly innovating to stand out. Product bundling serves as an effective strategy, simplifying consumers' choices while benefiting merchants. In this guide, we explore a tried-and-tested solution for managing static product bundles with Composable Commerce.
Benefits of product bundles
In digital commerce, a product bundle is a marketing strategy that combines multiple products or services and offers them as one package. This package might come at a reduced price or offer added value. Instead of buying items individually, customers can purchase the package, which generally contains complementary or related items.
Product bundles offer several advantages to merchants as well as their customers:
- Increased value perception: customers often perceive product bundles as having a value that surpasses the total cost of the individual items. This perceived value can motivate purchases and increase sales.
- Opportunities for cross-selling and upselling: combining related or popular items can encourage customers to buy additional products.
- Efficient inventory management: bundles can help clear out inventory, as combining slow-moving products with more popular items can help boost sales for less desirable items.
- Enhanced promotional activities: merchants can present product bundles as special deals or time-limited offers. Such promotions create a sense of urgency, encouraging customers to take advantage of the bundle before the deal ends.
- Improved customer experience: bundles that offer a cohesive set of products or services can enhance customer experience. Customers appreciate the convenience of finding everything they need in one package.
- Reduced shipping costs: as multiple items are shipped together, selling bundled products can lead to cost savings on shipping and handling for both the seller and the customer.
- Increased customer loyalty: positive experiences with a product bundle are more likely to bring the customer back to the store for future purchases, increasing customer loyalty.
- Competitive advantage: distinctive product bundles can give businesses a competitive edge, attracting more customers.
Model static bundles in Composable Commerce
Static bundles combine multiple related products for one total price, for example, selling a camera, bag, and batteries together at one price. The customer purchases a single bundle and receives two or more distinct, pre-selected items. Static bundles point to specific SKUs.
First, let's take a look at the Composable Commerce data structures required for modeling product bundles.
The high-level data structures
Product Types
Product Variants and Line Items
For this example, we are using a photography bundle that includes a camera and a lens. The bundle has a distinct, reduced price.

None
. The component Line Items reference the bundle Line Item using the parentLineItemId
Custom Field.The general architecture and user flow
When a customer adds a product to a cart, three primary systems are involved:
-
Client application (for example, a web store): the component where customers interact, select products, initiate transactions, and more.
-
Backend for frontend (for example, API hub): processes requests from the client application, executes custom business logic, and communicates with external APIs, such as Composable Commerce. This is the best place to add custom logic for bundle management.Learn more about adding custom logic in the API hub here.
-
Composable Commerce: handles core commerce functionalities, such as cart operations, prices, discounts, and inventory tracking.

Once the client application receives the cart update status, it displays either an updated cart or an error message (for example, availability error).
parentLineItemID
field). However, it's crucial to ensure that direct modifications to the component Line Items are restricted. All changes should be applied to the primary bundle Line Item.Setup and implementation
Customize the Product Type
components
property to the bundle Product Type that contains details about the specific SKUs included in the bundle.
Specify the quantity of Product Variants
In some cases, each Product Variant in the bundle might have distinct quantities, for example, a bundle with a camera, a lens, and two complimentary batteries. To store the quantity for each component Product Variant, consider these approaches:
- Use a Custom Object to represent any additional information (SKU, quantity) of each component Product Variant. In this configuration, each item is essentially a reference to a Custom Object.
- Adopt a standard format where each text in the set of Attributes combines the required information with a designated separator, such as
||
. An example would beBAT456||2
, whereBAT456
represents the SKU, and2
represents the quantity. You can extend this approach to capture more details about each component Product Variant, including names and descriptions.
Customize the Line Item
parentLineItemId
of type String.Cart logic customization for adding a bundle to a Cart
-
Detect that the product is a bundle and perform initial validations, such as verifying the availability of each component Product Variant.
-
If all component SKUs are available, call the AddLineItem action to add the bundle to the Cart, generating a new Line Item with the following:
externalPrice
set to the bundle price.quantity
set to1
.inventoryMode
set toNone
.
-
Check the
components
property of the bundle to retrieve all Product Variants (SKUs) included in the bundle using Product Projection Search. -
Iterate through the set of component Product Variants and, for each one, add a new Line Item with the following:
externalPrice
set to0.00
.quantity
set to the value specified by the bundle.custom
set to include theparentLineItemId
Custom Field where thevalue
is the ID of the bundle Line Item.inventoryMode
set toTrackOnly
orReserveOnOrder
.
Cart logic customization for changing bundle quantity
Here's the set of steps for adjusting bundle quantity:
- Retrieve the Cart.
- Validate that the Line Item in question is referencing a bundle. If not, use the standard quantity change process.
- Check that the specified quantity adjustment is possible by validating the availability of each component Product Variant. This step helps prevent inventory discrepancies further down the process when updating related Line Items.
- Change the quantity on the bundle Line Item.
- Iterate through the component Line Items and update the quantity for each.
Removing a bundle from the Cart works similarly; iterate over the component Line Items and remove each item.
Conclusion
In this guide, we've explored a flexible approach for modeling static product bundles with Composable Commerce. By implementing the outlined strategy, you can efficiently manage bundles, ensure accurate pricing and inventory, and provide a seamless experience for your customers.