Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface UpdateBundleDealRequest

    Request parameters for update_bundle_deal

    update bundle deal. Relevant restrictions refer to FAQ:https://open.shopee.com/faq/254

    interface UpdateBundleDealRequest {
        additional_tiers?: UpdateBundleDealAdditionalTier;
        bundle_deal_id: number;
        discount_percentage?: number;
        discount_value?: number;
        end_time?: number | Date;
        fix_price?: number;
        min_amount?: number;
        name?: string;
        purchase_limit?: number;
        rule_type?: number;
        start_time?: number | Date;
    }
    Index

    Properties

    Use to create tiered discount for bundle deals, a max of 2 additional tiers are allowed to create bundle deals like buy 2 get 10% off, buy 3 for 15% off, buy 4 for 20% off; For each tier, we will need to set the following 4 values based on bundle deal type + min_amount = IntAttribute() + fix_price = IntAttribute() + discount_percentage = IntAttribute() + discount_value = IntAttribute()Note: for additional tiers, the fix price, discount_percentage, discount_value should be consistent with tier 1

    bundle_deal_id: number

    Shopee's unique identifier for a bundle deal activity.

    discount_percentage?: number

    The discount that the buyer can get when buying a bundle deal. Need to input it when the bundle deal rule type is 2

    discount_value?: number

    The deducted price when when buying a bundle deal. Need to input it when the bundle deal rule type is 3

    end_time?: number | Date

    The time when bundle deal activity end. The end time must be later than current time.

    fix_price?: number

    The amount of the buyer needs to spend to purchase a bundle deal.Need to input it when the bundle deal rule type is 1

    min_amount?: number

    The quantity of items that need buyer to combine purchased

    name?: string

    Title of the bundle deal

    purchase_limit?: number

    Maximum number of bundle deals that can be bought by a buyer.

    rule_type?: number

    The bundle deal rule type:FIX_PRICE = 1 ;DISCOUNT_PERCENTAGE = 2; DISCOUNT_VALUE = 3

    start_time?: number | Date

    The time when bundle deal activity start.The start time must be later than current time.