Shopee SDK API Reference - v1.11.0
    Preparing search index...

    GlobalProductManager handles all global product operations for China mainland and Korean sellers. Global products allow sellers to manage products centrally and publish them to multiple shops.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    config: ShopeeConfig

    Methods

    • Get global item list

      Use this API to get global item id list. Only for China mainland sellers and Korean sellers.

      Parameters

      • params: GetGlobalItemListParams

        Parameters for getting global item list

        Parameters for getting global item list

        • Optionaloffset?: string

          Specifies the starting entry of data to return. If data is more than one page, offset can be used for next call

        • page_size: number

          The size of one page. Limit is [1,50]

        • Optionalupdate_time_from?: number

          The starting date range for retrieving items (based on item update time)

        • Optionalupdate_time_to?: number

          The ending date range for retrieving items (based on item update time)

      Returns Promise<GetGlobalItemListResponse>

      Promise resolving to global item list response

      const items = await sdk.globalProduct.getGlobalItemList({
      page_size: 20,
      update_time_from: 1611311600,
      update_time_to: 1611311631
      });