1. Products & Combinations
Example be.open API
  • be.open API
    • be.open API
    • Samples
    • Auth
      • Get api auth token
    • Attributes & Options
      • attributes
        • get country options of a product
      • get all available attributes
      • create or update an attribute
      • get a single attribute by id
      • adds or updates an option
      • list attribute categories
      • returns options for an attribute type of a service provider
    • Basket
      • get Basket
    • Price
      • get Price list
    • Categories
      • get product categories
      • Returns the products of a category.
    • Products & Combinations
      • get product configuration
        POST
      • get option configuration
        POST
      • get product attributes
        GET
      • get product independent attributes
        GET
      • Returns the products.
        GET
      • adds or updates a product with attributes, options and combinations.
        POST
      • Returns the single product.
        GET
      • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
        POST
      • delete combinations.
        DELETE
      • get country attribute with options
        GET
    • Serviceprovider
      • change attribute settings just for this service provider
      • change option settings just for this service provider
      • change attribute category setting just for this service provider
      • list orders for a service provider
      • get an order for a service provider
      • update order status from service provider
    • Order
      • create an order
      • get order
    • change attribute category setting just for this service provider
      PATCH
    • change attribute category setting just for this service provider
      PATCH
    • Schemas
      • Schemas
        • Attribute
        • AttributeCategory
        • CategoryModel
        • Product
        • BasicOrder
        • Order
        • Option
        • ProductMetaInformation
        • Client
        • OrderDetail
        • OrderCustomField
        • OrderFile
        • OrderUpload
        • File
        • PartialDelivery
        • OrderDetailFile
        • ProductCombination
        • Address
        • OrderDetailPrice
        • OrderDetailCombination
        • Address2
        • PriceConfiguration
        • Currency
        • ConfigurationOption
        • Price
        • ConfigurationOptionSize
      • Improved Schemas
        • ExampleAttributesCollection
        • Attribute
        • AttributeMetaData
        • Category
      • Responses
      • Custom Schemas
        • UpdateServiceproviderOrderResponse
      • AttributeOption
      • CreateProduct
      • QuantityShipping
      • QuantityDelivery
      • DeleteQuantityShipping
      • placedOrder
      • DeleteQuantityDelivery
      • Authentication
      • AuthenticationResponse
      • CreateAttribute
      • CreateOption
      • CreateProductCombination
      • DeleteProductCombination
      • ProductTypeData
      • DependableAttribute
      • ProductVariant
      • DeleteProductVariant
      • ServiceproviderOrderDetail
      • DependableOption
      • ProductQuantity
      • ProductAttribute
      • DeleteProductQuantity
      • OrderDetailPage
      • OptionOfAttribute
      • ProductResponse
      • LooseLeafData
      • AttributeResponse
      • OrderResponse
      • OrderDetailResponse
      • OrderAttributeOption
      • BasketPrice
      • OrderAddressResponse
      • CreateOrderAddress
      • CreateOrder
      • PatchServiceProviderOrder
      • JsonApi
      • PaginationMeta
      • PaginationLinks
      • AttributesListResponse
      • AttributeSingleResponse
      • OptionSingleResponse
      • AttributeResource
      • OptionIdentifier
      • AttributeCategoryEmbedded
      • AttributeCategoryResource
      • OptionResource
  • Druckshop API
    • Cart
      • getByJobNumber
    • Tracking
      • getByJobNumber
      • addTrackingId
    • Order
      • getOrder
      • getOrders
      • getOrderByReference
      • getOrderCart
    • FreeOrder
      • addFreeOrder
    • Schemas
      • FreeOrder
      • FreeOrderResponse
      • ApiAddress
      • FreeOrderPrice
      • FreeOrderCart
      • FreeOrderArticle
      • FreeOrderDataKeyValuePrice
  • be.print Dashboard API
    • PlacedOrder
      • Store a newly created placedOrder
      • Update an existing placedOrder
    • PlacedOrderCart
      • Store a newly created placedOrderCart
      • Update an existing placedOrderCart
    • Sso
      • sso.getTokenCheck
      • sso.setUserMapping
    • ValidateCustomerApi
      • validateCustomerApi.whoAmI
      • validateCustomerApi.postExternalClient
    • Dashboard API (MOVE TO ANOTHER PROJECT)!
      • Customer
        • whoAmI
        • addExternalClient
      • Orders
        • create order
        • update order
        • update order cart
    • Schemas
      • Schemas
        • AddExternalClientRequest
        • PlacedOrderCartRequest
        • PlacedOrderRequest
        • SsoExternalLinkRequest
        • SsoExternalUserMapping
      • Response
        • AuthenticationException
        • ValidationException
        • AuthorizationException
        • ModelNotFoundException
      • placedOrder
  1. Products & Combinations

delete combinations.

DELETE
/api/product/combinations
Deletes combinations for the product identified by key. Three independent deletion modes can be combined in one request (OR semantics — all provided modes are applied):
1.
attributes: list of attribute IDs — every combination of the product that contains any of these attributes is deleted; the attribute itself is also detached from the product.
2.
options: list of option IDs — every combination that contains any of these options is deleted; the parent attribute is detached from the product if no sibling option remains.
3.
product_variants: detailed mode — delete specific variants by their attributes/quantities combination. Each product_variants[].attributes[] entry MUST provide at least one of attribute_id/attribute_key and at least one of option_id/option_key (enforced server-side, throws 400 otherwise).
URL note: this endpoint uses singular /api/product/combinations while POST uses plural /api/products/combinations — this URL inconsistency is preserved for backwards compatibility.
IMPORTANT: the request is processed asynchronously. HTTP 200 only confirms acceptance — actual deletion is handled by a worker that runs every 10 minutes (at minute :00, :10, :20, … UTC), scaling with the number of combinations to remove.

Request

Header Params

Body Params application/json

Example
{
    "key": "ext-product-1",
    "attributes": [
        "a1111111-1111-1111-1111-111111111111"
    ],
    "options": [
        "o1111111-1111-1111-1111-111111111111"
    ],
    "product_variants": [
        {
            "attributes": [
                {
                    "attribute_id": "a2222222-2222-2222-2222-222222222222",
                    "option_id": "o2222222-2222-2222-2222-222222222222"
                }
            ],
            "quantities": [
                {
                    "quantity_id": "q1111111-1111-1111-1111-111111111111",
                    "delivery": {
                        "de": {
                            "s1111111-1111-1111-1111-111111111111": {}
                        }
                    }
                }
            ]
        }
    ]
}

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{}
🟠401Unauthorized request
Modified at 2026-05-29 10:44:16
Previous
adds or updates attributes, options and combinations of a product. Used to import combinations in parts
Next
get country attribute with options
Built with