Skip to main content
GET
/
bundles
/
bb
/
api
/
build-a-box
/
single-product
Get single-product build-a-box configuration
curl --request GET \
  --url https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product
import requests

url = "https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
const url = 'https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product';
const options = {method: 'GET'};

fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
require 'uri'
require 'net/http'

url = URI("https://bundles-admin.appstle.com/bundles/bb/api/build-a-box/single-product")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
[
  {
    "allowMixAndMatchBelowMinimumTier": true,
    "allowedCountries": "<string>",
    "allowedTags": "<string>",
    "announcementBarMessage": "<string>",
    "autofillNotChosenItems": true,
    "automaticDiscountNodeId": "<string>",
    "automaticShippingDiscountNodeId": "<string>",
    "averageOrderValue": 123,
    "badgesBackgroundColor": "<string>",
    "badgesTextColor": "<string>",
    "blockTitleColor": "<string>",
    "blockTitleFontSize": 123,
    "blockTitleFontStyle": "<string>",
    "borderRadius": 123,
    "breadCrumbSelectSectionIconUrl": "<string>",
    "bundleActiveFrom": "2023-11-07T05:31:56Z",
    "bundleActiveTo": "2023-11-07T05:31:56Z",
    "bundleHtml": "<string>",
    "bundlePageBackgroundColor": "<string>",
    "bundleProductId": 123,
    "bundleVariantId": "<string>",
    "buttonBackgroundColor": "<string>",
    "buttonPriceSelector": "<string>",
    "cardBackgroundColor": "<string>",
    "cardBorderColor": "<string>",
    "cardGap": 123,
    "cardHoverColor": "<string>",
    "collectionData": "<string>",
    "combinedWithOrderDiscount": true,
    "combinedWithProductDiscount": true,
    "combinedWithShippingDiscount": true,
    "comboProductFullPriceFontSize": 123,
    "comboProductFullPriceFontStyle": "<string>",
    "comboProductPriceFontSize": 123,
    "comboProductPriceFontStyle": "<string>",
    "comboProductTitleFontSize": 123,
    "comboProductTitleFontStyle": "<string>",
    "combos": "<string>",
    "compareAtPriceSelector": "<string>",
    "conversionRate": 123,
    "customRedirectURL": "<string>",
    "customerIncludeTags": "<string>",
    "defaultVariants": "<string>",
    "description": "<string>",
    "disableCartLineForSelectedBundleItems": true,
    "disableHighestTierPreference": true,
    "disableProductDescription": true,
    "disableQuantityRestrictedSection": true,
    "disableScrollingToBundle": true,
    "disableTierRestriction": true,
    "disabledTextColor": "<string>",
    "discountBadgeSelector": "<string>",
    "discountId": "<string>",
    "discountName": "<string>",
    "discountValue": 123,
    "discountedVariantSelectionLimit": 123,
    "discountedVariants": "<string>",
    "enableAnnouncementBar": true,
    "enableCompactMixAndMatchVariants": true,
    "enableDedicatedAddToCartButton": true,
    "enableMixAndMatchNativeAddToCart": true,
    "enableOrderDiscountClass": true,
    "enableProgressiveGifts": true,
    "enableSequentialProductLoading": true,
    "enableSubscription": true,
    "enableTriggerFreeGiftWithoutWidget": true,
    "enableVolumeDiscountMixAndMatch": true,
    "enableVolumeDiscountTierRestriction": true,
    "enableVolumeDiscountUpsell": true,
    "excludeSubscriptionPlans": "<string>",
    "externalBuildABoxId": 123,
    "fieldDisabledBackgroundColor": "<string>",
    "fixedBundleProductPageAddToBundleButtonBackgroundColor": "<string>",
    "fixedBundleProductPageAddToBundleButtonTextColor": "<string>",
    "fixedBundleProductPageAddToBundleLabel": "<string>",
    "fixedBundleProductPageAddToCartLabel": "<string>",
    "fixedBundleProductPageAddingToCartLabel": "<string>",
    "fixedBundleProductPageAdditionalOrderNoteLabel": "<string>",
    "fixedBundleProductPageAllSetLabel": "<string>",
    "fixedBundleProductPageAllSetLabelColor": "<string>",
    "fixedBundleProductPageBorderRadius": 123,
    "fixedBundleProductPageBreakdownFreeBadgeBackgroundColor": "<string>",
    "fixedBundleProductPageBreakdownFreeBadgeTextColor": "<string>",
    "fixedBundleProductPageBreakdownLabel": "<string>",
    "fixedBundleProductPageBreakdownToggleFontSize": 123,
    "fixedBundleProductPageBreakdownToggleFontStyle": "<string>",
    "fixedBundleProductPageBreakdownYouPayColor": "<string>",
    "fixedBundleProductPageCardBackgroundColor": "<string>",
    "fixedBundleProductPageCardBorderColor": "<string>",
    "fixedBundleProductPageCardPadding": 123,
    "fixedBundleProductPageCheckoutButtonBackgroundColor": "<string>",
    "fixedBundleProductPageCheckoutButtonFontSize": 123,
    "fixedBundleProductPageCheckoutButtonFontStyle": "<string>",
    "fixedBundleProductPageCheckoutButtonTextColor": "<string>",
    "fixedBundleProductPageChildCompareAtPriceColor": "<string>",
    "fixedBundleProductPageChildFixedQtyBackgroundColor": "<string>",
    "fixedBundleProductPageChildPriceFontSize": 123,
    "fixedBundleProductPageChildPriceFontStyle": "<string>",
    "fixedBundleProductPageChildTitleColor": "<string>",
    "fixedBundleProductPageChildTitleFontSize": 123,
    "fixedBundleProductPageChildTitleFontStyle": "<string>",
    "fixedBundleProductPageChildVariantColor": "<string>",
    "fixedBundleProductPageChooseAssociatedProductsLabel": "<string>",
    "fixedBundleProductPageChooseSourceProductLabel": "<string>",
    "fixedBundleProductPageContentsSubtitleColor": "<string>",
    "fixedBundleProductPageContentsTitleColor": "<string>",
    "fixedBundleProductPageContentsTitleFontSize": 123,
    "fixedBundleProductPageContentsTitleFontStyle": "<string>",
    "fixedBundleProductPageCurrentlyOutOfStockTooltip": "<string>",
    "fixedBundleProductPageDetailsMediaBackgroundColor": "<string>",
    "fixedBundleProductPageEmptyContentsLabel": "<string>",
    "fixedBundleProductPageFixedContentsTitle": "<string>",
    "fixedBundleProductPageFlexibleContentsTitle": "<string>",
    "fixedBundleProductPageFooterPriceColor": "<string>",
    "fixedBundleProductPageFooterPriceFontSize": 123,
    "fixedBundleProductPageFooterPriceFontStyle": "<string>",
    "fixedBundleProductPageFreeLabel": "<string>",
    "fixedBundleProductPageItemsInsideLabel": "<string>",
    "fixedBundleProductPageLowStockLabel": "<string>",
    "fixedBundleProductPageLowStockTooltip": "<string>",
    "fixedBundleProductPageMaximumQuantityLabel": "<string>",
    "fixedBundleProductPageMinimumQuantityLabel": "<string>",
    "fixedBundleProductPageNotEligibleLabel": "<string>",
    "fixedBundleProductPageOrderNoteLabel": "<string>",
    "fixedBundleProductPageOutOfStockCheckoutMessage": "<string>",
    "fixedBundleProductPageOutOfStockLabel": "<string>",
    "fixedBundleProductPageOutOfStockTooltip": "<string>",
    "fixedBundleProductPageParentCompareAtPriceColor": "<string>",
    "fixedBundleProductPageParentEyebrowColor": "<string>",
    "fixedBundleProductPageParentPriceColor": "<string>",
    "fixedBundleProductPageParentPriceFontSize": 123,
    "fixedBundleProductPageParentPriceFontStyle": "<string>",
    "fixedBundleProductPageParentTitleColor": "<string>",
    "fixedBundleProductPageParentTitleFontSize": 123,
    "fixedBundleProductPageParentTitleFontStyle": "<string>",
    "fixedBundleProductPagePickAnyLabel": "<string>",
    "fixedBundleProductPagePickMaxLabel": "<string>",
    "fixedBundleProductPagePickMinLabel": "<string>",
    "fixedBundleProductPagePickRangeLabel": "<string>",
    "fixedBundleProductPagePriceBreakdownTitle": "<string>",
    "fixedBundleProductPageProgressBarFillColor": "<string>",
    "fixedBundleProductPageProgressBarTrackColor": "<string>",
    "fixedBundleProductPageProgressLabel": "<string>",
    "fixedBundleProductPagePurchaseOptionBorderColor": "<string>",
    "fixedBundleProductPagePurchaseOptionLabel": "<string>",
    "fixedBundleProductPagePurchaseOptionLabelColor": "<string>",
    "fixedBundleProductPagePurchaseOptionSelectedColor": "<string>",
    "fixedBundleProductPageRequiredLoginLabel": "<string>",
    "fixedBundleProductPageSelectOptionLabel": "<string>",
    "fixedBundleProductPageSubscriptionSaveLabel": "<string>",
    "fixedBundleProductPageTotalValueLabel": "<string>",
    "fixedBundleProductPageValidationMessageColor": "<string>",
    "fixedBundleProductPageYouPayLabel": "<string>",
    "fixedBundleProductPageYourBundleLabel": "<string>",
    "freeShipping": true,
    "hasOptionChanges": true,
    "hasProductChanges": true,
    "headingTextColor": "<string>",
    "hideOneTimePurchase": true,
    "hideOutOfStockVariants": true,
    "hideQuantitySelector": true,
    "hideSubscriptionPurchase": true,
    "id": 123,
    "includedSubscriptionPlans": "<string>",
    "initialVisibleMixAndMatchVariantCount": 123,
    "insufficientStockLabel": "<string>",
    "internalName": "<string>",
    "labels": "<string>",
    "limitToUsePerCustomer": 123,
    "maxOrderAmount": 123,
    "maxPrice": 123,
    "maxProductCount": 123,
    "minOrderAmount": 123,
    "minPrice": 123,
    "minProductCount": 123,
    "mixAndMatchAddButtonLabel": "<string>",
    "mixAndMatchAddToCartLabel": "<string>",
    "mixAndMatchAddedItemsLabel": "<string>",
    "mixAndMatchGiftBadgeLabel": "<string>",
    "mixAndMatchLockedLabel": "<string>",
    "mixAndMatchNoProductSelectedLabel": "<string>",
    "mixAndMatchNoProductsAvailableLabel": "<string>",
    "mixAndMatchSeeAllLabel": "<string>",
    "mixAndMatchTierDiscountLabel": "<string>",
    "mixAndMatchTierQuantityLabel": "<string>",
    "mixAndMatchUnlockedLabel": "<string>",
    "mixAndMatchUpsellBadgeLabel": "<string>",
    "name": "<string>",
    "numberOfProducts": 123,
    "oneTimeSubtitle": "<string>",
    "oneTimeTitle": "<string>",
    "otherProductsButtonBackgroundColor": "<string>",
    "otherProductsButtonTextColor": "<string>",
    "otherProductsImageSize": 123,
    "otherProductsModalButtonBackgroundColor": "<string>",
    "otherProductsModalButtonTextColor": "<string>",
    "otherProductsModalFullPriceColor": "<string>",
    "otherProductsModalHeadingLabelColor": "<string>",
    "otherProductsModalImageSize": 123,
    "otherProductsModalOverlayColor": "<string>",
    "otherProductsModalPriceColor": "<string>",
    "otherProductsModalProductPriceTextSize": 123,
    "otherProductsModalProductTitleColor": "<string>",
    "otherProductsModalProductTitleTextSize": 123,
    "otherProductsModalSubtitleLabel": "<string>",
    "otherProductsProductTitleColor": "<string>",
    "otherProductsProductTitleSize": 123,
    "price": 123,
    "priceSelector": "<string>",
    "primaryColor": "<string>",
    "primaryDisabledColor": "<string>",
    "primaryDisabledTextColor": "<string>",
    "primaryHoverColor": "<string>",
    "primaryTextColor": "<string>",
    "productCardBackgroundColor": "<string>",
    "productFilterConfig": "<string>",
    "productHandle": "<string>",
    "products": "<string>",
    "progressiveGift": "<string>",
    "recurringCycleLimit": 123,
    "removeBundlePropertiesWhenNoDiscount": true,
    "restrictTags": "<string>",
    "ruleUpsellSubTitleFontSize": 123,
    "ruleUpsellSubTitleTextColor": "<string>",
    "ruleUpsellTitleFontSize": 123,
    "ruleUpsellTitleTextColor": "<string>",
    "saveBadgeBackgroundColor": "<string>",
    "saveBadgeFontSize": 123,
    "saveBadgeFontStyle": "<string>",
    "saveBadgeTextColor": "<string>",
    "scheduledBundleRule": true,
    "secondaryTextColor": "<string>",
    "sections": "<string>",
    "selectedCardBackgroundColor": "<string>",
    "selectedCardBorderColor": "<string>",
    "sequenceNo": 123,
    "sequentialProductsPerBatch": 123,
    "settings": "<string>",
    "shop": "<string>",
    "showAdditionalNoteInput": true,
    "showBundleInProductPage": true,
    "showClassicBundleWidgetInChildProduct": true,
    "showComboBundleWidgetInComboProduct": true,
    "showCompareAtPrice": true,
    "showPriceOfChosenProductsOnly": true,
    "showPriceWithSubscriptionPrice": true,
    "showPricesWithoutDecimal": true,
    "showSectionedBundleDiscountProgressBar": true,
    "showSellingPlanDescription": true,
    "showUnitPrice": true,
    "singleProductSettings": "<string>",
    "style": "<string>",
    "subTitle": "<string>",
    "subscribeSubtitle": "<string>",
    "subscribeTitle": "<string>",
    "subscriptionBundleLink": "<string>",
    "subscriptionBundlingEnabled": true,
    "subscriptionId": 123,
    "subscriptionPreselected": true,
    "subscriptionSubTitleFontSize": 123,
    "subscriptionSubTitleTextColor": "<string>",
    "subscriptionTitleFontSize": 123,
    "subscriptionTitleTextColor": "<string>",
    "tag": "<string>",
    "tierFreeGiftBackgroundColor": "<string>",
    "tierFreeGiftPriceFontSize": 123,
    "tierFreeGiftPriceFontStyle": "<string>",
    "tierFreeGiftTextColor": "<string>",
    "tierFreeGiftTitleFontSize": 123,
    "tierFreeGiftTitleFontStyle": "<string>",
    "tierFullPriceColor": "<string>",
    "tierFullPriceFontSize": 123,
    "tierFullPriceFontStyle": "<string>",
    "tierPriceColor": "<string>",
    "tierPriceFontSize": 123,
    "tierPriceFontStyle": "<string>",
    "tierSubTitleColor": "<string>",
    "tierSubTitleFontSize": 123,
    "tierSubTitleFontStyle": "<string>",
    "tierTitleColor": "<string>",
    "tierTitleFontSize": 123,
    "tierTitleFontStyle": "<string>",
    "tierUnitLabelFontSize": 123,
    "tierUnitLabelFontStyle": "<string>",
    "tierUpsellBackgroundColor": "<string>",
    "tierUpsellSubTitleFontSize": 123,
    "tierUpsellSubTitleTextColor": "<string>",
    "tierUpsellTitleFontSize": 123,
    "tierUpsellTitleTextColor": "<string>",
    "tieredDiscount": "<string>",
    "topBarDiscountRequiredAmountMessage": "<string>",
    "topBarDiscountRequiredQuantityMessage": "<string>",
    "topBarDiscountUnlockTitlePrefix": "<string>",
    "topBarFixedDiscountMessage": "<string>",
    "topBarFreeShippingMessage": "<string>",
    "topBarPercentDiscountMessage": "<string>",
    "totalOrderValue": 123,
    "totalVisitor": 123,
    "trackInventory": true,
    "translations": "<string>",
    "uniqueRef": "<string>",
    "unitLabel": "<string>",
    "updateThemeProductPrice": true,
    "upsellProductSelectionMode": "<string>",
    "upsellSubTitle": "<string>",
    "upsellTitle": "<string>",
    "upsells": "<string>",
    "useOriginalPriceForBuyXTotal": true,
    "validateInventoryQuantity": true,
    "variantSelectionLimit": 123,
    "variants": "<string>",
    "volumeAmountDiscountQuantityRewardsLabel": "<string>",
    "volumeAmountDiscountSaveRewardsLabel": "<string>",
    "volumeAmountDiscountSpentAmountRewardsLabel": "<string>",
    "volumeDiscountQuantityRewardsLabel": "<string>",
    "volumeDiscountSaveRewardsLabel": "<string>",
    "volumeDiscountSpentAmountRewardsLabel": "<string>"
  }
]

Response

200 - */*

OK

allowMixAndMatchBelowMinimumTier
boolean
allowedCountries
string
allowedTags
string
announcementBarMessage
string
appliesOn
enum<string>
Available options:
ONE_TIME,
SUBSCRIPTION,
BOTH
autofillNotChosenItems
boolean
automaticDiscountNodeId
string
automaticShippingDiscountNodeId
string
averageOrderValue
number<double>
badgesBackgroundColor
string
badgesStyles
enum<string>
Available options:
TRIANGLES,
NORMAL
badgesTextColor
string
blockTitleColor
string
blockTitleFontSize
integer<int32>
blockTitleFontStyle
string
borderRadius
integer<int32>
breadCrumbSelectSectionIconUrl
string
bundleActiveFrom
string<date-time>
bundleActiveTo
string<date-time>
bundleCheckoutSectionPosition
enum<string>
Available options:
ABOVE,
BELOW
bundleHtml
string
bundlePageBackgroundColor
string
bundleProductId
integer<int64>
bundleProductNameSortOrder
enum<string>
Available options:
DEFAULT,
ASC,
DESC
bundleRedirect
enum<string>
Available options:
CART,
CHECKOUT,
CUSTOM,
NONE
bundleSubType
enum<string>
Available options:
BUY_X_GET_Y,
FIXED_BUNDLE
bundleType
enum<string>
Available options:
MIX_AND_MATCH,
CLASSIC,
INFINITE,
CUSTOMIZE_BUNDLE,
CLASSIC_BUILD_A_BOX,
SINGLE_PRODUCT_BUILD_A_BOX,
VOLUME_DISCOUNT,
DISCOUNTED_PRICING,
SHIPPING_DISCOUNT,
BUY_X_GET_Y,
SECTIONED_BUNDLE,
COMBO_BUNDLE
bundleVariantId
string
buttonBackgroundColor
string
buttonPriceSelector
string
cardBackgroundColor
string
cardBorderColor
string
cardGap
integer<int32>
cardHoverColor
string
clearCart
enum<string>
Available options:
DEFAULT,
ENABLED,
DISABLED
collectionData
string
combinedWithOrderDiscount
boolean
combinedWithProductDiscount
boolean
combinedWithShippingDiscount
boolean
comboProductFullPriceFontSize
integer<int32>
comboProductFullPriceFontStyle
string
comboProductPriceFontSize
integer<int32>
comboProductPriceFontStyle
string
comboProductTitleFontSize
integer<int32>
comboProductTitleFontStyle
string
combos
string
compareAtPriceSelector
string
conversionRate
integer<int64>
countrySelectionType
enum<string>
Available options:
ALL_COUNTRY,
SELECTED_COUNTRY
customRedirectURL
string
customerIncludeTags
string
dedicatedSubscriptionLayout
enum<string>
Available options:
LAYOUT_ONE,
LAYOUT_TWO,
LAYOUT_THREE
defaultVariants
string
description
string
disableCartLineForSelectedBundleItems
boolean
disableHighestTierPreference
boolean
disableProductDescription
boolean
disableQuantityRestrictedSection
boolean
disableScrollingToBundle
boolean
disableTierRestriction
boolean
disabledTextColor
string
discountAppliesOn
enum<string>
Available options:
PER_QUANTITY,
PER_ORDER,
PER_LINE_ITEM
discountApplyApproach
enum<string>
Available options:
SHOPIFY_DISCOUNT_FUNCTION,
SHOPIFY_DISCOUNT_API
discountBadgeSelector
string
discountId
string
discountName
string
discountTargetType
enum<string>
Available options:
PRODUCT,
VARIANT,
ANY
discountType
enum<string>
Available options:
PERCENTAGE,
FIXED_AMOUNT,
FIXED_BUNDLE_AMOUNT,
TIERED_DISCOUNT,
NO_DISCOUNT,
FREE_GIFT
discountValue
number<double>
discountedProductChooseType
enum<string>
Available options:
CHOOSE_ALL,
CHOOSE_ONE,
CHOOSE_SPECIFIC
discountedVariantSelectionLimit
integer<int32>
discountedVariants
string
enableAnnouncementBar
boolean
enableCompactMixAndMatchVariants
boolean
enableDedicatedAddToCartButton
boolean
enableMixAndMatchNativeAddToCart
boolean
enableOrderDiscountClass
boolean
enableProgressiveGifts
boolean
enableSequentialProductLoading
boolean
enableSubscription
boolean
enableTriggerFreeGiftWithoutWidget
boolean
enableVolumeDiscountMixAndMatch
boolean
enableVolumeDiscountTierRestriction
boolean
enableVolumeDiscountUpsell
boolean
excludeSubscriptionPlans
string
externalBuildABoxId
integer<int64>
fieldDisabledBackgroundColor
string
fixedBundleProductPageAddToBundleButtonBackgroundColor
string
fixedBundleProductPageAddToBundleButtonTextColor
string
fixedBundleProductPageAddToBundleLabel
string
fixedBundleProductPageAddToCartLabel
string
fixedBundleProductPageAddingToCartLabel
string
fixedBundleProductPageAdditionalOrderNoteLabel
string
fixedBundleProductPageAllSetLabel
string
fixedBundleProductPageAllSetLabelColor
string
fixedBundleProductPageBorderRadius
integer<int32>
fixedBundleProductPageBreakdownFreeBadgeBackgroundColor
string
fixedBundleProductPageBreakdownFreeBadgeTextColor
string
fixedBundleProductPageBreakdownLabel
string
fixedBundleProductPageBreakdownToggleFontSize
integer<int32>
fixedBundleProductPageBreakdownToggleFontStyle
string
fixedBundleProductPageBreakdownYouPayColor
string
fixedBundleProductPageCardBackgroundColor
string
fixedBundleProductPageCardBorderColor
string
fixedBundleProductPageCardPadding
integer<int32>
fixedBundleProductPageCheckoutButtonBackgroundColor
string
fixedBundleProductPageCheckoutButtonFontSize
integer<int32>
fixedBundleProductPageCheckoutButtonFontStyle
string
fixedBundleProductPageCheckoutButtonTextColor
string
fixedBundleProductPageChildCompareAtPriceColor
string
fixedBundleProductPageChildFixedQtyBackgroundColor
string
fixedBundleProductPageChildPriceFontSize
integer<int32>
fixedBundleProductPageChildPriceFontStyle
string
fixedBundleProductPageChildTitleColor
string
fixedBundleProductPageChildTitleFontSize
integer<int32>
fixedBundleProductPageChildTitleFontStyle
string
fixedBundleProductPageChildVariantColor
string
fixedBundleProductPageChooseAssociatedProductsLabel
string
fixedBundleProductPageChooseSourceProductLabel
string
fixedBundleProductPageContentsSubtitleColor
string
fixedBundleProductPageContentsTitleColor
string
fixedBundleProductPageContentsTitleFontSize
integer<int32>
fixedBundleProductPageContentsTitleFontStyle
string
fixedBundleProductPageCurrentlyOutOfStockTooltip
string
fixedBundleProductPageDetailsMediaBackgroundColor
string
fixedBundleProductPageEmptyContentsLabel
string
fixedBundleProductPageFixedContentsTitle
string
fixedBundleProductPageFlexibleContentsTitle
string
fixedBundleProductPageFreeLabel
string
fixedBundleProductPageItemsInsideLabel
string
fixedBundleProductPageLowStockLabel
string
fixedBundleProductPageLowStockTooltip
string
fixedBundleProductPageMaximumQuantityLabel
string
fixedBundleProductPageMinimumQuantityLabel
string
fixedBundleProductPageNotEligibleLabel
string
fixedBundleProductPageOrderNoteLabel
string
fixedBundleProductPageOutOfStockCheckoutMessage
string
fixedBundleProductPageOutOfStockLabel
string
fixedBundleProductPageOutOfStockTooltip
string
fixedBundleProductPageParentCompareAtPriceColor
string
fixedBundleProductPageParentEyebrowColor
string
fixedBundleProductPageParentPriceColor
string
fixedBundleProductPageParentPriceFontSize
integer<int32>
fixedBundleProductPageParentPriceFontStyle
string
fixedBundleProductPageParentTitleColor
string
fixedBundleProductPageParentTitleFontSize
integer<int32>
fixedBundleProductPageParentTitleFontStyle
string
fixedBundleProductPagePickAnyLabel
string
fixedBundleProductPagePickMaxLabel
string
fixedBundleProductPagePickMinLabel
string
fixedBundleProductPagePickRangeLabel
string
fixedBundleProductPagePriceBreakdownTitle
string
fixedBundleProductPageProgressBarFillColor
string
fixedBundleProductPageProgressBarTrackColor
string
fixedBundleProductPageProgressLabel
string
fixedBundleProductPagePurchaseOptionBorderColor
string
fixedBundleProductPagePurchaseOptionLabel
string
fixedBundleProductPagePurchaseOptionLabelColor
string
fixedBundleProductPagePurchaseOptionSelectedColor
string
fixedBundleProductPageRequiredLoginLabel
string
fixedBundleProductPageSelectOptionLabel
string
fixedBundleProductPageSubscriptionSaveLabel
string
fixedBundleProductPageTotalValueLabel
string
fixedBundleProductPageValidationMessageColor
string
fixedBundleProductPageYouPayLabel
string
fixedBundleProductPageYourBundleLabel
string
freeShipping
boolean
getYAppliesOn
enum<string>
Available options:
ONE_TIME,
SUBSCRIPTION,
BOTH
hasOptionChanges
boolean
hasProductChanges
boolean
headingTextColor
string
hideOneTimePurchase
boolean
hideOutOfStockVariants
boolean
hideQuantitySelector
boolean
hideSubscriptionPurchase
boolean
id
integer<int64>
includedSubscriptionPlans
string
initialVisibleMixAndMatchVariantCount
integer<int32>
insufficientStockLabel
string
internalName
string
inventoryTrackingMode
enum<string>
Available options:
ADD_CHILD_PRODUCT_ON_ORDER,
ADD_CHILD_PRODUCT_ON_CHECKOUT
labels
string
layoutType
enum<string>
Available options:
LAYOUT_ONE,
LAYOUT_TWO,
LAYOUT_THREE,
LAYOUT_FOUR
limitToUsePerCustomer
integer<int32>
maxOrderAmount
number<double>
maxPrice
number<double>
maxProductCount
integer<int32>
minOrderAmount
number<double>
minPrice
number<double>
minProductCount
integer<int32>
mixAndMatchAddButtonLabel
string
mixAndMatchAddToCartLabel
string
mixAndMatchAddedItemsLabel
string
mixAndMatchGiftBadgeLabel
string
mixAndMatchLockedLabel
string
mixAndMatchNoProductSelectedLabel
string
mixAndMatchNoProductsAvailableLabel
string
mixAndMatchSeeAllLabel
string
mixAndMatchTierDiscountLabel
string
mixAndMatchTierQuantityLabel
string
mixAndMatchUnlockedLabel
string
mixAndMatchUpsellBadgeLabel
string
name
string
numberOfProducts
integer<int32>
oneTimeSubtitle
string
oneTimeTitle
string
otherProductsButtonBackgroundColor
string
otherProductsButtonTextColor
string
otherProductsImageSize
integer<int32>
otherProductsModalButtonBackgroundColor
string
otherProductsModalButtonTextColor
string
otherProductsModalFullPriceColor
string
otherProductsModalHeadingLabelColor
string
otherProductsModalImageSize
integer<int32>
otherProductsModalOverlayColor
string
otherProductsModalPriceColor
string
otherProductsModalProductPriceTextSize
integer<int32>
otherProductsModalProductTitleColor
string
otherProductsModalProductTitleTextSize
integer<int32>
otherProductsModalSubtitleLabel
string
otherProductsProductTitleColor
string
otherProductsProductTitleSize
integer<int32>
perRowItem
enum<string>
Available options:
TWO,
THREE
price
number<double>
priceSelector
string
primaryColor
string
primaryDisabledColor
string
primaryDisabledTextColor
string
primaryHoverColor
string
primaryTextColor
string
productCardBackgroundColor
string
productChooseType
enum<string>
Available options:
CHOOSE_ALL,
CHOOSE_ONE,
CHOOSE_SPECIFIC
productDiscountType
enum<string>
Available options:
EACH_PRODUCT,
SELECTED_PRODUCT
productFilterConfig
string
productHandle
string
productSelectionType
enum<string>
Available options:
PRODUCT,
COLLECTION
productViewStyle
enum<string>
Available options:
QUICK_ADD,
VIEW_DETAILS
products
string
progressiveGift
string
purchaseRequirement
enum<string>
Available options:
MINIMUM_AMOUNT,
MINIMUM_QUANTITY,
NO_REQUIREMENT
recurringCycleLimit
integer<int32>
removeBundlePropertiesWhenNoDiscount
boolean
restrictTags
string
ruleUpsellSubTitleFontSize
integer<int32>
ruleUpsellSubTitleTextColor
string
ruleUpsellTitleFontSize
integer<int32>
ruleUpsellTitleTextColor
string
saveBadgeBackgroundColor
string
saveBadgeFontSize
integer<int32>
saveBadgeFontStyle
string
saveBadgeTextColor
string
scheduledBundleRule
boolean
secondaryTextColor
string
sections
string
selectedCardBackgroundColor
string
selectedCardBorderColor
string
selectionType
enum<string>
Available options:
FIXED,
FLEXIBLE
sellingPlanDisplayType
enum<string>
Available options:
DROPDOWN,
RADIO
sellingPlanSource
enum<string>
Available options:
PRODUCT,
SUBSCRIPTION_WIDGET
sellingPlanType
enum<string>
Available options:
BUNDLE_LEVEL,
PRODUCT_LEVEL
sequenceNo
integer<int32>
sequentialProductsPerBatch
integer<int32>
settings
string
shippingDiscountType
enum<string>
Available options:
NO_DISCOUNT,
FREE_SHIPPING_FOR_BUNDLE_ONLY,
FREE_SHIPPING_FOR_ENTIRE_ORDER
shop
string
showAdditionalNoteInput
boolean
showBundleInProductPage
boolean
showClassicBundleWidgetInChildProduct
boolean
showComboBundleWidgetInComboProduct
boolean
showCompareAtPrice
boolean
showPriceOfChosenProductsOnly
boolean
showPriceWithSubscriptionPrice
boolean
showPricesWithoutDecimal
boolean
showSectionedBundleDiscountProgressBar
boolean
showSellingPlanDescription
boolean
showUnitPrice
boolean
singleProductSettings
string
status
enum<string>
Available options:
ACTIVE,
DRAFT
style
string
subTitle
string
subscribeSubtitle
string
subscribeTitle
string
subscriptionBundlingEnabled
boolean
subscriptionId
integer<int64>
subscriptionPreselected
boolean
subscriptionSubTitleFontSize
integer<int32>
subscriptionSubTitleTextColor
string
subscriptionTitleFontSize
integer<int32>
subscriptionTitleTextColor
string
subscriptionWidgetPosition
enum<string>
Available options:
ABOVE,
BELOW
tag
string
themeProductPriceType
enum<string>
Available options:
PRICE_PER_ITEM,
BUNDLE_PRICE
themeType
enum<string>
Available options:
THEME_ONE,
THEME_TWO
tierFreeGiftBackgroundColor
string
tierFreeGiftPriceFontSize
integer<int32>
tierFreeGiftPriceFontStyle
string
tierFreeGiftTextColor
string
tierFreeGiftTitleFontSize
integer<int32>
tierFreeGiftTitleFontStyle
string
tierFullPriceColor
string
tierFullPriceFontSize
integer<int32>
tierFullPriceFontStyle
string
tierPriceColor
string
tierPriceFontSize
integer<int32>
tierPriceFontStyle
string
tierSubTitleColor
string
tierSubTitleFontSize
integer<int32>
tierSubTitleFontStyle
string
tierTitleColor
string
tierTitleFontSize
integer<int32>
tierTitleFontStyle
string
tierUnitLabelFontSize
integer<int32>
tierUnitLabelFontStyle
string
tierUpsellBackgroundColor
string
tierUpsellSubTitleFontSize
integer<int32>
tierUpsellSubTitleTextColor
string
tierUpsellTitleFontSize
integer<int32>
tierUpsellTitleTextColor
string
tieredDiscount
string
topBarDiscountRequiredAmountMessage
string
topBarDiscountRequiredQuantityMessage
string
topBarDiscountUnlockTitlePrefix
string
topBarFixedDiscountMessage
string
topBarFreeShippingMessage
string
topBarPercentDiscountMessage
string
totalOrderValue
number<double>
totalVisitor
integer<int64>
trackInventory
boolean
translations
string
uniqueRef
string
unitLabel
string
updateThemeProductPrice
boolean
upsellProductSelectionMode
string
upsellSubTitle
string
upsellTitle
string
upsells
string
useOriginalPriceForBuyXTotal
boolean
validateInventoryQuantity
boolean
variantSelectionLimit
integer<int32>
variantVisibilityType
enum<string>
Available options:
SHOW_VARIANTS_AS_INDIVIDUAL,
SHOW_VARIANTS_AS_OPTIONS
variants
string
volumeAmountDiscountQuantityRewardsLabel
string
volumeAmountDiscountSaveRewardsLabel
string
volumeAmountDiscountSpentAmountRewardsLabel
string
volumeDiscountQuantityRewardsLabel
string
volumeDiscountSaveRewardsLabel
string
volumeDiscountSpentAmountRewardsLabel
string