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

(63) Activity 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 (63) Activity change

#

§2 Trigger scenario

Trigger scenario

The Activity change webhook is designed to notify partners about modifications related to activities and the products associated with them. This allows applications to stay synchronized with changes in activity details or product inclusion/exclusion lists.

#

§3 Data business parameters

Data business parameters

PropertiesTypeExampleDescription
shop_idString"7494049642642441621"The ID of the shop.
timestampInt641732526400The time when this webhook was triggered, represented by Unix timestamp.
tts_notification_idString"7327112393057371910"The ID of the notification.
typeInt6463The ID of the webhook type.
dataObject
└ activity_idString"7136104329798256386"The ID of the promotion activity.
└ update_timeInt641732526465The time when the status changed, represented as a Unix timestamp (seconds).
└ change_typeStringCREATEThe type of activity changes. * CREATE * UPDATE * DEACTIVATE
└ product_update_listObjectProducts included in an updated scope.
└└ product_ids[]String["123456","789012"]Included product IDs.
└└ exclude_product_ids[]String["345678"]IDs of the BXGY exclude products to remove. Max count: 100.
└└ benefit_product_ids[]String["456789"]TikTokShop product ID list.
└ product_remove_listObjectProducts removed from the activity.
└└ product_ids[]String["111222","333444"]Removed product IDs.
└└ sku_ids[]String["111","222"]Removed SKU IDs.
└└ benefit_product_ids[]String["555666"]TikTokShop product ID list.
└└ exclude_product_ids[]String["345678"]IDs of the BXGY exclude products to remove. Max count: 100.
#

§4 Event example

Event example

{
  "type": 63,
  "timestamp": 1678886400,
  "shop_id": "789123456789123456",
  "tts_notification_id": "000000000000000001",
  "data": {
    "activity_id": "act_123456789012345678",
    "update_time": 1678886400,
    "change_type": "product_update",
    "product_update_list": {
      "product_ids": [
        "11111111",
        "22222222"
      ],
      "exclude_product_ids": [
        "33333333"
      ],
      "benefit_product_ids": [
        "44444444"
      ]
    },
    "product_remove_list": {
      "product_ids": [
        "55555555"
      ],
      "sku_ids": [
        "66666666"
      ],
      "benefit_product_ids": [],
      "exclude_product_ids": []
    }
  }
}
#