Skip to main content

(62) Product Package Recommended

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

Event example

JSONWord Wrap

{
"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"
}
}
}
}