Skip to main content

violation_item_push

Last Updated: 20 Feb 2025

Basics

PropertyValue
CategoryProduct Push
Push Mechanism Nameviolation_item_push
Push Mechanism Code16
Push Mechanism DescriptionGet 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 RulesERP System/Seller In House System/Product Management/Marketing/Swam ERP
Time Out Seconds3s
Sequence GuaranteedNo
Can Repeated Same MessageYes
Retry Seconds300s,1800s,10800s

Push Parameters

NameTypeSampleDescription
dataobjectMain Push message data
item_idint643400133011Shopee's unique identifier for an item.
item_namestringtestName of the item.
item_statusstringBANNEDEnumerated type that defines the current status of the item. Applicable values: NORMAL, BANNED, UNLIST, SELLER_DELETE, SHOPEE_DELETE, REVIEWING.
deboostbooleantrueIf deboost is true, means that the item's search ranking is lowered.
item_status_detailsobject[]
violation_typestringProhibited ListingViolation types defined by Shopee. Applicable values:  Prohibited Listing Counterfeit and IP Infringement Spam Inappropriate Image Insufficient Information Mall Listing Improvement Other Listing Improvement
violation_reasonstringLicense ReasonThe reason for violation.
suggestionstringUpload licenseShopee provides you with suggestions for modifying items.
fix_deadline_timetimestamp1705227588Action required deadline. Empty if no deadline.
update_timetimestamp1705054788Latest update time.
deboost_detailsobject[]
violation_typestringProhibited ListingViolation types defined by Shopee. Applicable values:  Prohibited Listing Counterfeit and IP Infringement Spam Inappropriate Image Insufficient Information Mall Listing Improvement Other Listing Improvement
violation_reasonstringWrong CategoryThe reason for violation.
suggestionstringThe item is in wrong category, please update to the suggested_categoryShopee provides you with suggestions for modifying items.
suggested_categoryobject[]
category_idint64107478ID for Shopee suggested category.
category_namestringPersonal CareDefault name for Shopee suggested category.
fix_deadline_timetimestamp1705202227Action required deadline. Empty if no deadline.
update_timetimestamp1704943027Latest update time.
shop_idint64Shopee's unique identifier for a shop.
codeint32Shopee's unique identifier for a push notification.
timestamptimestampTimestamp that indicates the message was sent.
  1. 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
}
  1. 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
}
  1. 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
}

Update Log

DateUpdate Details
2024-01-18New Push