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

(37) Product audit 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 (37) Product audit status change

#

§2 Trigger scenario

Trigger scenario

When the product audit status changes, you'll receive this webhook. With this webhook, you can easily get the audit status information of a product instead of calling Get Product API. To receive this webhook, you must ensure the Product Basic API scope is enabled in Partner Center.

#

§3 Data business parameters

Data business parameters

Parameter nameData TypeSampleDescription
typeint37The ID of the webhook type.
tts_notification_idstring"7327112393057371910"The ID of the notification.
shop_idstring"7494049642642441621"The ID of the shop.
timestampint1644412885The time when this webhook was triggered, represented by Unix timestamp.
dataobject
└ product_idint789078671231The ID of the product.
└ auditobjectThe product audit information.
└└ statusstringPRE_APPROVEDThe product audit status. Possible values: * NONE: The product is not applicable for audit because it has not been submitted for listing on this platform, or it is in a draft, frozen, or deactivated state. * AUDITING: The product is currently being audited. * FAILED: The product failed the audit, or the audit was cancelled. * PRE_APPROVED: The product has passed the audit but is not yet listed due to pending prerequisites. Refer to pre_approved_reasons for the prerequisites. * APPROVED: The product passed the audit and has been listed on the platform.
└└ pre_approved_reasons[]string["KYC_PENDING"]The reason why the audit status of the product is PRE_APPROVED. Possible values: * KYC_PENDING: The seller's onboarding (KYC - Know Your Customer information) is incomplete or awaiting processing. * RESTRICTED_CATEGORY_PENDING: Applicable only for the US market. The product is in a restricted category, and category approval is still pending. To request access, submit an application through the Qualification Center on TikTok Shop Seller Center.
└ integrated_platform_statusesobjectThe current audit status of the product on platforms that are natively integrated with TikTok Shop (e.g. TOKOPEDIA).
└└ platformstringTOKOPEDIAThe integrated platform name. Possible values: * TOKOPEDIA.
└└ statusstringAUDITINGThe product audit status. Possible values: * NONE: The product is not applicable for audit because it has not been submitted for listing on this platform, or it is in a draft, frozen, or deactivated state. * AUDITING: The product is currently being audited. * FAILED: The product failed the audit or the audit was cancelled. * APPROVED: The product passed the audit and has been listed on the platform.
└ update_timeint1644412885The time when the status changed, represented as a Unix timestamp (seconds).
#

§4 Event example

Event example

{
  "type": 37,
  "shop_id": "7494049642642441621",
  "tts_notification_id" : "7327112393057371910",
  "timestamp": 1644412885,
  "data": {
    "product_id": 789078671231,
    "audit": {
        "status": "PRE_APPROVED",
        "pre_approved_reason": "KYC_PENDING"
    },
    "integrated_platform_statuses": {
        "platform": "TOKOPEDIA",
        "status": "AUDITING"
    },
    "update_time": 1644412885
  }
}
#