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

(50)SKU status change

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 SKU Status Change Webhook

#

§2 Trigger scenario

Trigger scenario

This webhook is triggered when the SKU status of an existing product changes. Typical scenarios include:

  • A new SKU is added under an existing product.
  • An existing SKU is deleted from an existing product.
  • An existing SKU is activated.
  • An existing SKU is deactivated.

Prerequisite: The merchant has subscribed to the corresponding webhook topic and the related product change event is successfully consumed by the webhook delivery pipeline.

#

§3 Data business parameters

Data business parameters

Parameter nameData typeSampleDescription
typeint50The ID of this webhook topic. This value is pending final assignment.
tts_notification_idstring"7327112393057371910"The ID of this webhook notification.
shop_idstring"7494049642642441621"The shop ID.
timestampint1644412885The time when this webhook is triggered. Unix timestamp.
dataobjectThe business payload of this webhook.
└ product_idstring"123456789"The ID of the product whose SKU status changed.
└ skusobject[][{"sku_id":"987654321","status":"CREATED"}]The list of SKUs whose status changed.
└└ sku_idstring"987654321"The ID of the SKU whose status changed.
└└ statusstring"CREATED"The new SKU status. Possible values: CREATED, DELETED, ACTIVATED, DEACTIVATED.
└└ deactivation_sourcestring"SELLER"The source of deactivation. This field is returned only when status is DEACTIVATED. Possible values: SELLER, PLATFORM, COMBO_RELATION.
└ update_timeint1627587600The time when the change occurred. Unix timestamp.
#

§4 Event example

Event example

{
  "type": "TBD",
  "tts_notification_id": "7327112393057371910",
  "shop_id": "7494049642642441621",
  "timestamp": 1644412885,
  "data": {
    "product_id": "123456789",
    "skus": [
      {
        "sku_id": "987654321",
        "status": "DEACTIVATED",
        "deactivation_source": "SELLER"
      },
      {
        "sku_id": "987654322",
        "status": "CREATED"
      }
    ],
    "update_time": 1627587600
  }
}
#

§5 Notes

Notes

  • timestamp and update_time are both Unix timestamps in seconds.
  • deactivation_source is omitted unless the SKU is deactivated.
  • The skus array may contain one or multiple SKU change records in a single event.
  • The final topic ID should be updated after internal assignment is confirmed.
#