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

    Interface SearchItemRequest

    Request parameters for search_item

    Use this call to search item.

    interface SearchItemRequest {
        attribute_status?: number;
        deboost_only?: boolean;
        item_name?: string;
        item_sku?: string;
        item_status?: string | number;
        offset?: string;
        page_size: number;
    }
    Index

    Properties

    attribute_status?: number

    1:get item lack of requires attribute. 2:get item lack of optional attribute.

    deboost_only?: boolean

    If deboost_only is true, then API will return items whose deboost is true, if deboost_only is empty or false, then API will return items whose deboost is true and false simultaneously

    item_name?: string

    name of item.

    item_sku?: string

    sku. If you search for item_sku and item_name at the same time, only the results that match item_sku will be returned. If you search for item_sku and attribute_status at the same time, the results that match both item_sku and attribute_status will be returned.

    item_status?: string | number

    NORMAL/BANNED/UNLIST/REVIEWING/SELLER_DELETE/SHOPEE_DELETEIf you want to search multiple status, please upload the url like this: item_status=NORMAL&item_status=BANNED

    offset?: string

    Specifies the starting entry of data to return in the current call. Default is empty. if data is more than one page, the offset can be some entry to start next call.

    page_size: number

    the size of one page.