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

For All Markets : Target Collaboration Conflict Pre-Check & Resolution Feature

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. Overview

Today, when an ISV creates a target (open) collaboration, it calls Create Open Collaboration directly and only learns the outcome from the response. Because the creation endpoint enforces a set of business rules (including conflicts with existing target collaborations on the same creator + product), creation frequently fails, forcing ISVs into a trial-and-error loop and putting unnecessary load on the creation API. To address this, the Affiliate category has released two new APIs that introduce a “pre-check → resolve → create” pattern:

This lets ISVs validate before they create, dramatically reducing failed Create Open Collaboration calls.

#

§3 3. New APIs

#

§4 3.1 Check Target Collaboration Conflicts (202605)

3.1 Check Target Collaboration Conflicts (202605)

Method & PathPOST /affiliate_seller/202605/target_collaborations/conflicts/check
PurposeRetrieve conflicting target collaborations for the product and determine if they can be terminated.
Key request bodycreator_open_id_list — creator open ID list; product_id_list — product ID list
ResponseStandard wrapper code, message, request_id, data (conflict details indicating which items conflict and whether they are resolvable).
#

§5 3.2 Cancel Target Collaboration Conflicts (202605)

3.2 Cancel Target Collaboration Conflicts (202605)

Method & PathPOST /affiliate_seller/202605/target_collaborations/conflicts/resolve
PurposeExecute resolution actions on resolvable conflict items within the scope of seller authorization.
Key request bodyconflict_items — list of user and product identifiers with target collaboration conflicts that caused creation failure.
ResponseStandard wrapper code, message, request_id, data (resolution result per conflict item).
#

§6 4. Impact & Affected Parties

4. Impact & Affected Parties

  • Who is affected: All ISVs / developers that create target (open) collaborations via Create Open Collaboration, especially those currently retrying on creation failures.
  • Nature of change: This is additive — no breaking change. Create Open Collaboration continues to work as-is; the two new endpoints are an optional but strongly recommended pre-flight + remediation step.
  • Benefit: Fewer failed creation calls, clearer failure reasons before creation, and lower load on the creation endpoint.
#