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

(4) Package update

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 1. Trigger scenario

The package update webhook is triggered when package updates such as combine, split, cancel the combine package operation, etc. occur.

#

§2 2. Data business parameters

Parameter nameSampleDescription
sc_typeCOMBINEType of the event trigger, with possible values: * COMBINE * CANCEL_COMBINE * SPLIT * CANCEL_SPLIT * ADDRESS_UPDATE_SPLIT * CANCEL_FULFILL_SPLIT * FULFILL_UNCOMBINE * PARTLY_CANCEL_SPLIT * SPLIT_BY_SKU_CANCEL
role_typeROLE_USEROperator of the event trigger, with possible values: * ROLE_USER * ROLE_SELLER * ROLE_OPERATOR * ROLE_SYSTEM
package_list[]objectPackage list updated by the event trigger
└ package_id"123456"The identification of a package
└ order_id_list["152523", "532123"]List of order IDs in a given package
update_time1627587600The time when the package was updated, represented as a Unix timestamp (seconds).
#

§3 Event example

Event example

{
  "type": 4,
  "tts_notification_id": "7327112393057371910",
  "shop_id": "7494049642642441621",
  "timestamp": 1644412885,
  "data": {
    "sc_type": "COMBINE",
    "role_type": "ROLE_USER",
    "package_list": [
      {
        "package_id": "123456",
        "order_id_list": [
          "152523",
          "532123"
        ]
      }
    ],
    "update_time": 1644412885
  }
}
#