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

(62) Product Package Recommended

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 a product package recommendation is generated. Note: Applicable only for Brazil (BR) and Mexico (MX) markets. Prerequisite: The "Product Basic" API scope is enabled in Partner Center. For more information, please refer to Access Scope.

#

§2 2. Data business parameters

PropertiesTypeExampleProperties description
typeint62The ID of the webhook type.
tts_notification_idstring7327112393057371910The ID of the notification.
shop_idstring2123123The shop_id of the seller. To get the value, see Authorization overview.
timestampint1644412885The UNIX timestamp when this webhook was triggered.
dataobject
>product_idstring7493990579714164574The product ID generated by TikTok Shop.
>>abnormality_types[]string["Weight","Dimension"]List of current anomaly types. Return ["None"] if status is NORMAL.
>>weight_recommendationobjectWeight correction recommendation.
>>>unitstringGRAMRecommended value unit
>>>weightobjectRecommended values for weight.
>>>>min_valuestring450Recommended range minimum; unit: g
>>>>max_valuestring550Recommended range maximum; unit: g
>>dimension_recommendationobjectDimension correction recommendation.
>>>unitstringCENTIMETERRecommended value unit
>>>lengthobjectRecommended values for length.
>>>> min_valuestring19Recommended range minimum; unit: cm
>>>> max_valuestring22Recommended range maximum.unit: cm
>>>widthobjectRecommended values for width.
>>>> min_valuestring19Recommended range minimum; unit: cm
>>>> max_valuestring22Recommended range maximum.unit: cm
>>>heightobjectRecommended values for height.
>>>> min_valuestring19Recommended range minimum; unit: cm
>>>> max_valuestring22Recommended range maximum; unit: cm

#

§3 Event example

Event example

{
    "type": 62,
    "tts_notification_id": "7611238471432161025",
    "shop_id": "1111111",
    "timestamp": 1772129552,
    "data": {
        "abnormality_types": [
            "Weight",
            "Dimension"
        ],
        "dimension_recommendation": {
            "height": {
                "max_value": "3",
                "min_value": "3"
            },
            "length": {
                "max_value": "1234",
                "min_value": "123"
            },
            "unit": "CENTIMETER",
            "width": {
                "max_value": "666",
                "min_value": "555"
            }
        },
        "product_id": "1733529220361062152",
        "weight_recommendation": {
            "unit": "GRAM",
            "weight": {
                "max_value": "12000",
                "min_value": "12000"
            }
        }
    }
}
#