item_price_update_push
Last Updated: 8 Sep 2025
Basics
| Property | Value |
|---|---|
| Category | Product Push |
| Push Mechanism Name | item_price_update_push |
| Push Mechanism Code | 22 |
| Push Mechanism Description | Send the push when the seller updates the original_price of the item or model. |
| Push Mechanism Subscription Rules | ERP System/Seller In House System/Product Management/Swam ERP |
| Time Out Seconds | 3s |
| Sequence Guaranteed | No |
| Can Repeated Same Message | Yes |
| Retry Seconds | 300s,1800s,10800s |
Push Parameters
| Name | Type | Sample | Description |
|---|---|---|---|
| data | object | Main Push message info. | |
| item_id | int64 | 1861418518 | Shopee's unique identifier for an item. |
| model_id | int64 | 8791278571 | Shopee's unique identifier for a model of an item. |
| update_field | string | "original_price" | The field value we changed. It will be "original_price" and "local_price" |
| old_value | float | 119.99 | The original_price value before the updates. |
| new_value | float | 99.99 | The original_price value after the updates. |
| update_time | timestamp | 1660124246 | The time of original_price updates. |
| shop_id | int64 | 127449165 | Shopee's unique identifier for a shop. |
| code | int32 | 22 | Shopee's unique identifier for a push notification. |
| timestamp | timestamp | 1660124246 | Timestamp that indicates the message was sent. |
Push Contents
Action: Seller updates the original_price of the item or model.
Json
{
"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
}
Update Log
| Date | Update Details |
|---|---|
| 2025-09-08 | The field update_field now supports a new enum value "local_price" |
| 2024-06-27 | New Push |