package_info_push
Last Updated: 26 Dec 2025
Basics
| Property | Value |
|---|---|
| Category | Order Push |
| Push Mechanism Name | package_info_push |
| Push Mechanism Code | 47 |
| Push Mechanism Description | Get notified immediately on package information updates, including changes to the Ship By Date and Logistics Channel, so you can take the necessary steps in time. |
| Push Mechanism Subscription Rules | ERP System/Seller In House System/Order 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 |
|---|---|---|---|
| shop_id | int64 | 220688102 | Shopee's unique identifier for a shop. |
| code | int32 | 47 | Shopee's unique identifier for a push notification. |
| timestamp | timestamp | 1764569832 | Timestamp that indicates the message was sent. |
| data | object | ||
| order_sn | string | 2512017TFPB0HF | Shopee's unique identifier for an order. |
| package_number | string | OFG218268963204539 | Shopee's unique identifier for the package under an order. |
| changed_fields | string[] | ["ship_by_date"] | Returns value: ship_by_date or logistics_channel_id, depending on which field has been updated. Both values will be returned if both fields have been updated. |
| old | object | Previous Ship By Date and logistics channel assigned to order. | |
| logistics_channel_id | int64 | 70124 | Shopee's unique identifier for the previous logistics channel assigned to the order. |
| ship_by_date | timestamp | 1764746165 | Previous Ship By Date assigned to the order. |
| new | object | New Ship By Date and logistics channel assigned to order. | |
| logistics_channel_id | int64 | 70124 | Shopee's unique identifier for the new logistics channel assigned to the order. |
| ship_by_date | timestamp | 1764573365 | New Ship By Date assigned to the order. |
| update_time | timestamp | 1764569831 | Timestamp that indicates the last time that there was a change in value of ship_by_date or logistics_channel_id. |
Java
{
"data": {
"changed_fields": [
"ship_by_date"
],
"old": {
"logistics_channel_id": 70124,
"ship_by_date": 1764573365
},
"new": {
"logistics_channel_id": 70124,
"ship_by_date": 1764746165
},
"order_sn": "2512017TFPB0HF",
"package_number": "OFG218268963204539",
"update_time": 1764569831
},
"shop_id": 220688102,
"code": 47,
"timestamp": 1764569832
}
Update Log
| Date | Update Details |
|---|---|
| 2025-12-18 | New Push |