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

item_price_update_push

Shopee 官方资料 · Shopee Open Platform 推送机制(Push Mechanism) · 适合开发者

stable本次发布有变化全部展示

来自 Shopee 官方资料快照 ·

打开官方原文 ↗
  1. 当前资料结构化阅读页
  2. 固定快照已留存,可追溯
  3. 官方原文可核对
查看技术与溯源信息
平台 / profile
Shopee / profile.shopee.push_mechanism
语言
en-US
发布版本
cn-20260909-2
标签
zhuge/sourceplatform/shopeeaudience/developercategory/api_doctopic/apitopic/developertopic/product-pushtopic/push

资料正文

§1 item_price_update_push

Send the push when the seller updates the original_price of the item or model.

#

§2 Overview

Overview

FieldValue
Push code22
Timeout (seconds)3
Retry strategy (seconds)300, 1800, 10800
Guaranteed deliveryNo
#

§3 Push parameters

Push parameters

NameTypeRequiredSampleDescription
dataobjectMain Push message info.
data.item_idint641861418518Shopee's unique identifier for an item.
data.model_idint648791278571Shopee's unique identifier for a model of an item.
data.update_fieldstring"original_price"The field value we changed. It will be "original_price" and "local_price"
data.old_valuefloat119.99The original_price value before the updates.
data.new_valuefloat99.99The original_price value after the updates.
data.update_timetimestamp1660124246The time of original_price updates.
shop_idint64127449165Shopee's unique identifier for a shop.
codeint3222Shopee's unique identifier for a push notification.
timestamptimestamp1660124246Timestamp that indicates the message was sent.
#

§4 Sample

Sample

{
    "data": {
        "item_id": 1861418518,
        "model_id": 8791278571,
        "update_field": "original_price",
        "old_value": 119.99,
        "new_value": 99.99,
        "update_time": 1660124246
    },
    "shop_id": 127449165,
    "code": 22,
    "timestamp": 1660124246
}
#

§5 Update log

Update log

DateChange
2025-09-08The field update_field now supports a new enum value "local_price"
2024-06-27New Push
#