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

    Interface AddBundleDealRequest

    Request parameters for add_bundle_deal

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

    interface AddBundleDealRequest {
        additional_tiers?: AddBundleDealAdditionalTier[];
        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

    additional_tiers?: AddBundleDealAdditionalTier[]

    Use to create tiered discount for bundle deals, a max of 2 additional tiers are allowed to create.the rule of multiple tiers needs to follow this faq https://open.shopee.com/faq/53For additional tiers, the fix price, discount_percentage, discount_value should be consistent with tier 1

    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 1 hour later than start 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.