---
title: "Get Cart"
method: GET
path: "/carts/{id}"
tags: ["Carts"]
---

# Get Cart

`GET /carts/{id}`

To get cart information by inputting cart id<br> 以購物車ID取得該購物車資料

## Path parameters

- `id` string, required

## Query parameters

- `calculate_all` boolean

## Response `200`

OK

- object
  - `code` string
  - `message` string
  - `data` Cart
    - `id` string — Cart ID<br>購物車ID
    - `merchant_id` string — Merchant ID<br>商家ID
    - `owner_id` string — Owner ID<br>購物車擁有者ID，登入會員的購物車此值是 user_id; 訪客的購物車則是 public_session_id
    - `owner_type` 'USER' | 'GUEST' — Owner Type<br>購物車擁有者類型，登入會員的購物車此值是 User; 訪客的購物車則是 Guest
    - `page_id` string — Page ID<br>一頁式商店 (express checkout)購物車的 page_id
    - `product_id` string — Product ID<br>產品ID
    - `items` CartItem[] — Cart Items<br>購物車項目
      - `id` string — Cart ID<br>購物車物品ID
      - `product_id` string — Product ID<br>購物車內的商品ID
      - `variation_id` string — Variation ID<br>購物車內的商品規格品ID
      - `quantity` number — Quantity<br>購物車內的物品數量
      - `type` 'product' | 'product_set' | 'subscription_product' | 'manual_gift' | 'custom_product' | 'custom_discount' | 'redeem_gift' — Type<br>購物車內的物品類型
      - `created_by` string — The Source of Item<br> 購物車物品加入的來源
      - `triggering_item_id` string — Triggering Item ID<br>主商品的 ID（加購品才會有這個欄位）
      - `custom_price` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `total_price` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `lock_info` object — Lock Inventory info<br>庫存鎖定資訊（直播場景）
      - `item_data` object — Information Of Item<br>購物車內的項目資訊
        - `name` string
        - `ref_id` string
        - `discount_type` string
        - `selected_child_products` object[]
          - `child_product_id` string
          - `child_variation_id` string
          - `quantity` number
      - `product` CartProduct
        - `id` string — Product ID<br>商品 ID
        - `title_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `type` string — Product Type<br>商品類型
        - `same_price` boolean — Main Product and Variation Product share the same price (Including original price and member price) <br>規格商品是否皆同主商品價格，包含原價格與會員價<br>
        - `price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `is_preorder` boolean — Pre-ordered or not<br>是否開放預購
        - `sku` string — Stock Keeping Unit<br>商品貨號
        - `blacklisted_payment_ids` string[] — Excluded Payment Method<br>排除的付款方式
        - `blacklisted_delivery_option_ids` string[] — Excluded Delivery Options<br>排除的送貨方式
        - `out_of_stock_orderable` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `is_excluded_promotion` boolean — product is exclude promotion which is discount on order<br>不適用全店折扣的優惠是否開啟
        - `field_titles` object[] — Field Title Data<br>規格名稱
          - `key` string
          - `label` string
          - `name_translations` Translatable
            - `en` string — Merchant defined English name<br>店家定義英文名稱
            - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
            - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
            - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
            - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
            - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
            - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
            - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
            - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
            - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `max_order_quantity` number — set maximum quantity per purchase for this product<br> 商品單次購買上限<br> *-1 represents there's no quantity limit for each purchase<br> -1代表無商品單次購買的上限
        - `created_by` string — The Channel Product established through<br>商品建立管道
        - `subscription_enabled` boolean — subscription_enabled<br>是否為定期購商品
        - `flash_price_sets` object[] — Price for Flash Campaign<br>限時促銷價
          - `start_at` string
          - `end_at` string
        - `cart_tag_id` string — The Cart Tag Configured For The Product<br>商品設定的溫層屬性
        - `unlimited_quantity` boolean — Unlimited product quantity or not<br>商品數量是否無限
        - `lowest_member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `quantity` number — Quantity<br>商品數量
        - `cover_media` object — Product Cover<br>商品封面
        - `child_products` object[] — Product Set Contained Child Products<br>組合商品之子商品
        - `member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `price_sale` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `total_orderable_quantity` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `preorder_limit` number — Pre-ordere Limit<br>預購上限
        - `has_variation` boolean — Has Variation<br>是否為多規格商品
        - `updated_at` string — Last Updated Time<br>商品最後更新時間
        - `created_at` string — Product Created Time<br>商品創建時間
      - `variation` CartProductVariation
        - `id` string — Product Variation ID<br>商品規格 ID
        - `fields_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `out_of_stock_orderable` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `fields` object[] — Fields
        - `max_order_quantity` number — set maximum quantity per purchase for this product<br> 商品單次購買上限<br> *-1 represents there's no quantity limit for each purchase<br> -1代表無商品單次購買的上限
        - `unlimited_quantity` boolean — Unlimited product quantity or not<br>商品數量是否無限
        - `quantity` number — Quantity<br>商品數量
        - `total_orderable_quantity` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `media` object — Product Cover<br>規格圖片
        - `member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `price_sale` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
      - `applied_promotion` CartPromotion
        - `id` string — 優惠 ID
        - `title_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `discount_type` string, nullable — Discount Type<br>優惠類型
        - `is_extended_promotion` boolean — Is Extend Promotion<br>是否是多階層優惠
    - `payment_id` string — Payment ID<br>金流選項ID
    - `delivery_option_id` string — Delivery Option ID<br>運送選項ID
    - `country` string — Country<br>國家
    - `region_code` string — Region Code<br>地區代碼
    - `postcode` string — Postcode<br>郵遞區號
    - `referral_code` string — Referral Code<br>推薦碼
    - `shop_session_id` string — Shop Session ID<br>商店Session ID
    - `coupon_codes` string[] — Coupon Codes<br>優惠券代碼
    - `lock_inventory_ids` string[] — Lock Inventory IDs<br>鎖定庫存ID
    - `credit_apply_amount` number — Credit Apply Amount<br>購物金折抵金額
    - `apply_member_point` number — Apply Member Point<br>會員點數折抵數量
    - `delivery_data` object — Delivery Data<br>運送資料
    - `delivery_address` object — Delivery Address<br>運送地址
    - `payment_cod_type` 'COD' | 'NCOD' — Payment COD Type<br>貨到付款類型，COD是貨到付款; NCOD是非貨到付款
    - `total` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `subtotal` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `applied_credits_limit` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `applied_user_credits` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `total_tax_fee` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `delivery_fee` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `payment_fee` Money
      - `cents` integer
      - `currency_symbol` string
      - `currency_iso` string
      - `label` string
      - `dollars` number
    - `user_credit_balance` number — User Credit Balance<br>購物金餘額
    - `applied_tax_info` object — Applied Tax Info<br>已套用稅金資訊
      - `sale` TaxInfo
        - `min` number — Max rate<br>套用最低稅率
        - `max` number — Min rate<br>套用最高稅率
        - `country_code` string — ISO Country Code<br>稅收國家或地區（ISO 標準國家代碼）
        - `flag` string — Flag<br>國家旗幟
        - `region` string — Tax Region<br>稅收地區
        - `city` string — City<br>城市
        - `name` string — Tax Name<br>稅金名稱
      - `Delivery` TaxInfo
        - `min` number — Max rate<br>套用最低稅率
        - `max` number — Min rate<br>套用最高稅率
        - `country_code` string — ISO Country Code<br>稅收國家或地區（ISO 標準國家代碼）
        - `flag` string — Flag<br>國家旗幟
        - `region` string — Tax Region<br>稅收地區
        - `city` string — City<br>城市
        - `name` string — Tax Name<br>稅金名稱
    - `inclusive_tax_info` object — Inclusive Tax Info<br>商品內含稅金
      - `type` string
      - `tax_region_id` string
      - `rate` number — Tax rate<br>套用稅率
      - `fee` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `country_code` string — ISO Country Code<br>稅收國家或地區（ISO 標準國家代碼）
      - `tax_name` string — Tax Name<br>稅金名稱
    - `custom_discount_items` CartItem[] — Custom Discount Items<br>自訂折扣項目(**deprecated**)
      - `id` string — Cart ID<br>購物車物品ID
      - `product_id` string — Product ID<br>購物車內的商品ID
      - `variation_id` string — Variation ID<br>購物車內的商品規格品ID
      - `quantity` number — Quantity<br>購物車內的物品數量
      - `type` 'product' | 'product_set' | 'subscription_product' | 'manual_gift' | 'custom_product' | 'custom_discount' | 'redeem_gift' — Type<br>購物車內的物品類型
      - `created_by` string — The Source of Item<br> 購物車物品加入的來源
      - `triggering_item_id` string — Triggering Item ID<br>主商品的 ID（加購品才會有這個欄位）
      - `custom_price` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `total_price` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `lock_info` object — Lock Inventory info<br>庫存鎖定資訊（直播場景）
      - `item_data` object — Information Of Item<br>購物車內的項目資訊
        - `name` string
        - `ref_id` string
        - `discount_type` string
        - `selected_child_products` object[]
          - `child_product_id` string
          - `child_variation_id` string
          - `quantity` number
      - `product` CartProduct
        - `id` string — Product ID<br>商品 ID
        - `title_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `type` string — Product Type<br>商品類型
        - `same_price` boolean — Main Product and Variation Product share the same price (Including original price and member price) <br>規格商品是否皆同主商品價格，包含原價格與會員價<br>
        - `price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `is_preorder` boolean — Pre-ordered or not<br>是否開放預購
        - `sku` string — Stock Keeping Unit<br>商品貨號
        - `blacklisted_payment_ids` string[] — Excluded Payment Method<br>排除的付款方式
        - `blacklisted_delivery_option_ids` string[] — Excluded Delivery Options<br>排除的送貨方式
        - `out_of_stock_orderable` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `is_excluded_promotion` boolean — product is exclude promotion which is discount on order<br>不適用全店折扣的優惠是否開啟
        - `field_titles` object[] — Field Title Data<br>規格名稱
          - `key` string
          - `label` string
          - `name_translations` Translatable
            - `en` string — Merchant defined English name<br>店家定義英文名稱
            - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
            - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
            - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
            - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
            - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
            - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
            - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
            - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
            - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `max_order_quantity` number — set maximum quantity per purchase for this product<br> 商品單次購買上限<br> *-1 represents there's no quantity limit for each purchase<br> -1代表無商品單次購買的上限
        - `created_by` string — The Channel Product established through<br>商品建立管道
        - `subscription_enabled` boolean — subscription_enabled<br>是否為定期購商品
        - `flash_price_sets` object[] — Price for Flash Campaign<br>限時促銷價
          - `start_at` string
          - `end_at` string
        - `cart_tag_id` string — The Cart Tag Configured For The Product<br>商品設定的溫層屬性
        - `unlimited_quantity` boolean — Unlimited product quantity or not<br>商品數量是否無限
        - `lowest_member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `quantity` number — Quantity<br>商品數量
        - `cover_media` object — Product Cover<br>商品封面
        - `child_products` object[] — Product Set Contained Child Products<br>組合商品之子商品
        - `member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `price_sale` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `total_orderable_quantity` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `preorder_limit` number — Pre-ordere Limit<br>預購上限
        - `has_variation` boolean — Has Variation<br>是否為多規格商品
        - `updated_at` string — Last Updated Time<br>商品最後更新時間
        - `created_at` string — Product Created Time<br>商品創建時間
      - `variation` CartProductVariation
        - `id` string — Product Variation ID<br>商品規格 ID
        - `fields_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `out_of_stock_orderable` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `fields` object[] — Fields
        - `max_order_quantity` number — set maximum quantity per purchase for this product<br> 商品單次購買上限<br> *-1 represents there's no quantity limit for each purchase<br> -1代表無商品單次購買的上限
        - `unlimited_quantity` boolean — Unlimited product quantity or not<br>商品數量是否無限
        - `quantity` number — Quantity<br>商品數量
        - `total_orderable_quantity` number — Product's Current total orderable quantity<br>商品目前可購買總數量<br>-<br> *If unlimited_quantity is true or out_of_stock_orderable is true<br> this field will return -1
        - `media` object — Product Cover<br>規格圖片
        - `member_price` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
        - `price_sale` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
      - `applied_promotion` CartPromotion
        - `id` string — 優惠 ID
        - `title_translations` Translatable
          - `en` string — Merchant defined English name<br>店家定義英文名稱
          - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
          - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
          - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
          - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
          - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
          - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
          - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
          - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
          - `fr` string — Merchant defined France name<br>店家定義法文名稱
        - `discount_type` string, nullable — Discount Type<br>優惠類型
        - `is_extended_promotion` boolean — Is Extend Promotion<br>是否是多階層優惠
    - `coupons` CouponItem[] — Coupons Items<br>套用優惠項目
      - `id` string — 優惠 ID
      - `cart_tag_id` string — Cart Tag ID<br>購物車溫層 ID
      - `coupon_item` object
        - `coupon_code` string — Coupon Code<br>酷碰券代碼
        - `discounted_amount` Money
          - `cents` integer
          - `currency_symbol` string
          - `currency_iso` string
          - `label` string
          - `dollars` number
      - `discounted_amount` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `discount_on` string — Discount On<br>優惠生效等級
      - `discount_percentage` number — Discount Percentage<br>折抵百分比數（優惠類型為 %折扣 時）
      - `discount_type` string — Discount Type<br>優惠類型
      - `discounted_price` Money
        - `cents` integer
        - `currency_symbol` string
        - `currency_iso` string
        - `label` string
        - `dollars` number
      - `extended_promotion_id` string, nullable — Extended Promotion ID<br>多階層優惠所對應的主要優惠活動 ID
      - `is_accumulated` boolean — Is Accumulated Promotion<br>是否是自動累計優惠
      - `is_extend_promotion` boolean — Is Extend Promotion<br>是否是多階層優惠
      - `is_membership_tier_promotion` boolean — Is Membership Tier Promotion<br>是否是會員分級專屬優惠
      - `membership_tier_id` string, nullable — Membership Tier ID<br>會員分級專屬優惠 ID
      - `requires_membership` boolean — Requires Membership<br>需要會員資格
      - `summary_translations` Translatable
        - `en` string — Merchant defined English name<br>店家定義英文名稱
        - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
        - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
        - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
        - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
        - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
        - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
        - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
        - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
        - `fr` string — Merchant defined France name<br>店家定義法文名稱
      - `title_translations` Translatable
        - `en` string — Merchant defined English name<br>店家定義英文名稱
        - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
        - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
        - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
        - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
        - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
        - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
        - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
        - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
        - `fr` string — Merchant defined France name<br>店家定義法文名稱
      - `whitelisted_membership_tier_ids` string[], nullable — Whitelisted Membership Tier IDs<br>可使用的會員等級 IDs
    - `affiliate_data` object — Cart Affiliate Data<br>購物車附屬屬性（社交電商場景）
    - `sale_event_info` object — Sale Event Information<br>直播場景資訊（社交電商場景）
    - `deliveries` CartDelivery[] — The Delivery Options Contained In The Cart<br>購物車包含之送貨方式（多購物車場景）
      - `cart_tag_id` string — Cart Tag ID<br>多購物車溫層 ID
      - `country` string — Country<br>國家
      - `delivery_address` object — Delivery Address<br>送貨地址
      - `delivery_data` object — Delivery Data<br>送貨資訊
      - `delivery_option_id` string — Delivery Option ID<br>送貨方式 ID
      - `postcode` string — PostCode<br>郵遞區號
      - `region_code` string — Region Code<br>地區
      - `payment_id` string — Payment ID<br>付款方式 ID
    - `cart_tags` object[] — The Cart Tags Contained In The Cart<br>購物車包含之溫層（多購物車場景）
      - `id` string — The Cart Tag ID<br>溫層 ID
      - `priority` number — Priority<br>優先度
      - `name_translations` Translatable
        - `en` string — Merchant defined English name<br>店家定義英文名稱
        - `zh-hant` string — Merchant defined Traditional Chinese name<br>店家定義繁體中文名稱
        - `zh-cn` string — Merchant defined Simplified Chinese name<br>店家定義簡體中文名稱
        - `vi` string — Merchant defined Vietnamese name<br>店家定義越南文名稱
        - `ms` string — Merchant defined Malaysian name<br>店家定義馬來西亞文名稱
        - `ja` string — Merchant defined Japanese name<br>店家定義日文名稱
        - `th` string — Merchant defined Thai name<br>店家定義泰文名稱
        - `id` string — Merchant defined Indian name<br>店家定義印度文名稱
        - `de` string — Merchant defined Deutsch name<br>店家定義德文名稱
        - `fr` string — Merchant defined France name<br>店家定義法文名稱
    - `multi_cart_data` object — Calculating Data Of Each Cart Tag<br>每個溫層之計算資料（多購物車場景）
    - `created_at` string — Created At<br>建立時間
    - `updated_at` string — Updated At<br>更新時間
  - `trace_id` string

---

[API](https://skmtc.net/shoplineapp/apis/shopline-open-api.md) · [All operations](https://skmtc.net/shoplineapp/apis/shopline-open-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/shoplineapp/shopline-open-api/versions/1675ac12cde7/schema)
