快工助手跨境电商知识与商机助手

For All Markets: Identify Temporary Listings in Order APIs

TikTok Shop 官方资料 · TikTok Shop Partner Center 开发者文档 · 适合开发者

stable本次发布有变化全部展示

来自 TikTok Shop 官方资料快照 ·

打开官方原文 ↗
  1. 当前资料结构化阅读页
  2. 固定快照已留存,可追溯
  3. 官方原文可核对
查看技术与溯源信息
平台 / profile
TikTok Shop / profile.tiktok.docs_api
语言
en-US
发布版本
cn-20260909-2
标签
zhuge/sourceplatform/tiktok_shopaudience/developercategory/api_doctopic/compliancetopic/developer

资料正文

§1 Overview

This response-only enhancement is available to apps that retrieve order data through the Get Order List and Get Order Detail APIs. It does not change API requests or existing order workflows.

ItemDetails
AvailabilityAll markets, since July 30, 2026
Change typeNon-breaking, additive response field
Affected appsOrder management, shipping, warehouse management, and other apps that need to distinguish temporary listing SKUs
Developer actionRead the new field and route temporary listing SKUs to the appropriate shipping workflow
#

§2 What is changing

Previously, Order API responses did not indicate whether an order line item came from a temporary listing. Apps could not reliably separate temporary listing SKUs from other SKUs when preparing fulfillment or shipping interfaces.

AreaBefore July 30, 2026Current behavior
Order line item responseNo listing-type indicatorReturns product_listing_type
Temporary listing detectionApps could not identify it from Order API dataApps can detect TEMPORARY_LISTING
Shipping workflowApps used the same routing logic for all SKUsApps can apply a separate workflow for temporary listing SKUs
#

§3 Affected APIs

Affected APIs

APIMethod and pathResponse field
Get Order ListPOST /order/202309/orders/searchdata.orders[].line_items[].product_listing_type
Get Order DetailGET /order/202309/ordersdata.orders[].line_items[].product_listing_type
Get Order DetailGET /order/202507/ordersdata.orders[].line_items[].product_listing_type
#

§4 New field

New field

FieldTypeValueDescription
product_listing_typestringTEMPORARY_LISTINGIndicates that the SKU was created as a temporary listing. The field is returned at the order line item level.

Your app must tolerate other values and a missing field. Do not fail order ingestion when the value is unknown or absent.

#

§5 Response example

Response example

{
  "data": {
    "orders": [
      {
        "id": "576461413038785752",
        "line_items": [
          {
            "id": "577086512123755123",
            "sku_id": "2729382476852921560",
            "product_listing_type": "TEMPORARY_LISTING"
          }
        ]
      }
    ]
  }
}
#

§6 How to integrate

  1. Update your response model. Add the optional string field product_listing_type under each object in data.orders[].line_items[].
  2. Detect temporary listing SKUs. When the field equals TEMPORARY_LISTING, classify that line item as a temporary listing.
  3. Route the line item. Apply the shipping interface or fulfillment workflow that your app uses for temporary listings.
  4. Preserve a fallback. Keep your existing workflow when the field contains another value, is empty, or is not returned.
  5. Test both paths. Validate at least one temporary listing line item and one non-temporary line item before enabling automated routing.
#

§7 Timeline and enforcement

DateWhat happened
July 30, 2026The field became available in all markets on the affected Order APIs.

This is a non-breaking response enhancement. TikTok Shop does not require a new request format or introduce new error codes for this change. Existing integrations can continue to process orders, but apps that ignore the field cannot distinguish temporary listing SKUs for separate workflow routing.

#

§8 FAQ

#

§9 Do I need to upgrade to a new API version?

Do I need to upgrade to a new API version?

No. The field is available in the listed v202309 and v202507 endpoints.

#

§10 Does this change any request parameters?

Does this change any request parameters?

No. This update adds a response field at the order line item level.

#

§11 Does this apply to every market?

Does this apply to every market?

Yes. The field has been available in all markets since July 30, 2026.

#