Skip to main content

BundleAddItemsInput

Input for adding items to an existing bundle.

Contains the products to be added along with their configurations and tax zone for pricing calculations.

input BundleAddItemsInput {
items: [BundleItemInput!]!
taxZone: String
}

Fields

BundleAddItemsInput.items ● [BundleItemInput!]! non-null input

Collection of products to add to the existing bundle.

Each item represents a product with its configuration and role. Products must be unique and only one can be designated as the leader item. Validation ensures unique product IDs and single leader designation.

BundleAddItemsInput.taxZone ● String scalar

Geographic tax zone for pricing calculations.

Determines which tax rates and rules apply to bundle pricing for accurate cost calculations. Must be exactly 2 characters representing a country code. Validation enforces the two-letter format.

Member Of

bundleAddItems mutation ● bundleAddItemsAndReturnBundle mutation