violation_item_push
Last Updated: 20 Feb 2025
Thông số cơ bản
| Property | Value |
|---|---|
| Category | Product Push |
| Push Mechanism Name | violation_item_push |
| Push Mechanism Code | 16 |
| Push Mechanism Description | Get notified when item status becomes BANNED or SHOPEE_DELETE, or marked as deboost, including the violation type, violation reason, suggestion and fix deadline time. |
| Push Mechanism Subscription Rules | ERP System/Seller In House System/Product Management/Marketing/Swam ERP |
| Time Out Seconds | 3s |
| Sequence Guaranteed | No |
| Can Repeated Same Message | Yes |
| Retry Seconds | 300s,1800s,10800s |
Tham số Push
| Tên | Kiểu | Mẫu | Mô tả |
|---|---|---|---|
| data | object | Dữ liệu chính của thông báo push. | |
| item_id | int64 | 3400133011 | Mã định danh duy nhất của Shopee cho một sản phẩm. |
| item_name | string | test | Tên sản phẩm. |
| item_status | string | BANNED | Enumerated type that defines the current status of the item. Applicable values: NORMAL, BANNED, UNLIST, SELLER_DELETE, SHOPEE_DELETE, REVIEWING. |
| deboost | boolean | true | Nếu deboost là true, nghĩa là thứ hạng tìm kiếm của sản phẩm bị hạ thấp. |
| item_status_details | object[] | ||
| violation_type | string | Prohibited Listing | Violation types defined by Shopee. Applicable values: Prohibited Listing Counterfeit and IP Infringement Spam Inappropriate Image Insufficient Information Mall Listing Improvement Other Listing Improvement |
| violation_reason | string | License Reason | Lý do vi phạm. |
| suggestion | string | Upload license | Shopee cung cấp gợi ý cho bạn về cách chỉnh sửa sản phẩm. |
| fix_deadline_time | timestamp | 1705227588 | Hạn chót cần thực hiện. Trống nếu không có hạn chót. |
| update_time | timestamp | 1705054788 | Thời gian cập nhật mới nhất. |
| deboost_details | object[] | ||
| violation_type | string | Prohibited Listing | Violation types defined by Shopee. Applicable values: Prohibited Listing Counterfeit and IP Infringement Spam Inappropriate Image Insufficient Information Mall Listing Improvement Other Listing Improvement |
| violation_reason | string | Wrong Category | Lý do vi phạm. |
| suggestion | string | The item is in wrong category, please update to the suggested_category | Shopee cung cấp gợi ý cho bạn về cách chỉnh sửa sản phẩm. |
| suggested_category | object[] | ||
| category_id | int64 | 107478 | ID danh mục mà Shopee đề xuất. |
| category_name | string | Personal Care | Tên mặc định của danh mục mà Shopee đề xuất. |
| fix_deadline_time | timestamp | 1705202227 | Hạn chót cần thực hiện. Trống nếu không có hạn chót. |
| update_time | timestamp | 1704943027 | Thời gian cập nhật mới nhất. |
| shop_id | int64 | Mã định danh duy nhất của Shopee cho một cửa hàng. | |
| code | int32 | Mã định danh duy nhất của Shopee cho một thông báo push. | |
| timestamp | timestamp | Thời điểm cho biết tin nhắn đã được gửi. |
- When the item is banned by Shopee:
Java
{
"data":{
"item_id":3903127451,
"item_name":"MZH制造商品1",
"item_status":"BANNED",
"deboost":false,
"item_status_details":[
{
"violation_type":"Prohibited Listing",
"violation_reason":"License Reason",
"suggestion":"Upload license",
"fix_deadline_time":1705228281,
"update_time":1705055481
},
{
"violation_type":"Inappropriate Image",
"violation_reason":"Image Reason",
"suggestion":"Update image",
"fix_deadline_time":1705228281,
"update_time":1705055481
}
]
},
"shop_id":602228340,
"code":16,
"timestamp":1705055481
}
- When the item is deleted by Shopee:
Java
{
"data":{
"item_id":3903127452,
"item_name":"MZH制造商品2",
"item_status":"SHOPEE_DELETE",
"deboost":false,
"item_status_details":[
{
"violation_type":"Prohibited Listing",
"violation_reason":"License Reason",
"suggestion":"Upload license",
"fix_deadline_time":1700638193,
"update_time":1699428593
}
]
},
"shop_id":602228340,
"code":16,
"timestamp":1699428593
}
- When the item is marked as deboost by Shopee:
Json
{
"data":{
"item_id":3603542555,
"item_name":"MZH制造商品3",
"item_status":"NORMAL",
"deboost":true,
"deboosted_details":[
{
"violation_type":"Inappropriate Image",
"violation_reason":"Image Reason",
"suggestion":"Update image",
"fix_deadline_time":1704943027,
"update_time":1704943027
},
{
"violation_type":"Prohibited Listing",
"violation_reason":"Wrong Category",
"suggestion":"The item is in wrong category, please update to the suggested_category",
"suggested_category":[
{
"category_id":100005,
"category_name":"Health"
},
{
"category_id":107478,
"category_name":"Personal Care"
}
],
"fix_deadline_time":1704943027,
"update_time":1704943027
}
]
},
"shop_id":605748501,
"code":16,
"timestamp":1704943027
}
Lịch sử cập nhật
| Ngày | Chi tiết cập nhật |
|---|---|
| 2024-01-18 | New Push |