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

(25) Opportunity matching 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 1. Trigger scenario

This webhook is triggered when the status of opportunity matching for a candidate product changes. Prerequisite: The "Product Opportunities" API scope is enabled in Partner Center. For more information, refer to Access Scope. <span style="background-color: rgb(255, 245, 235)">📌 This webhook is currently available only to a limited set of developers.</span>

#

§2 2. Data business parameters

Parameter nameData typeSampleDescription
typeint25The ID of this webhook topic, which is 25.
tts_notification_idstring"7327112393057371910"The ID of this webhook notification.
shop_idstring"7494049642642441621"The shop ID.
timestampint1730458800The time when this webhook is triggered. Unix timestamp.
dataobject
└ external_product_idstring"576486316948490000"An external product identifier used in the external ecommerce platform.
└ opportunity_matching_statusstring"PENDING"The status of opportunity matching. Possible values: - PENDING: Waiting for opportunity matching. - MATCHED: There are one or more matched opportunities. - NOT_MATCHED: There are no matches.
└ opportunity_ids[]string["213231", "213233"]A list of IDs for the matched opportunities.
└ opportunity_matching_end_timeint1735603200The time by which the system will stop matching opportunities for this candidate product. Unix timestamp. - Default: 60 days from the upload time. - Latest allowable time: 60 days from the upload time.
└ update_timeint1730458800The time when the opportunity matching status is last updated. Unix timestamp.
#

§3 Event example

Event example

{  
  "type": 25,  
  "tts_notification_id": "7327112393057371910", 
  "shop_id": "7494049642642441621",  
  "timestamp": 1730458800,  
  "data": {  
    "external_product_id": "576486316948490000",  
    "opportunity_matching_status": "PENDING",
    "opportunity_ids": ["213231", "213233"],
    "opportunity_matching_end_time": 1735603200,
    "update_time": 1730458800
  }  
}
#