brand_register_result
Last Updated: 18 Aug 2022
Basics
| Property | Value |
|---|---|
| Category | Product Push |
| Push Mechanism Name | brand_register_result |
| Push Mechanism Code | 13 |
| Push Mechanism Description | Get the brand register result |
| 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 | ||
| shop_id | int | 7487788 | Shopee's unique identifier for a shop. |
| register_brand | object | Seller registered brand information. | |
| brand_id | int | 3232262 | The brand id returned by Shopee for the brand registration. |
| brand_name | string | ABC | The brand name applied by the seller. |
| register_result | object | Registration result | |
| result | string | Brand Registration Successfully | Registration result. Can be Brand Registration Successfully / Brand Registration Reject / Brand combined with an exist brand |
| reason | string | More detail about the result. | |
| shop_id | int | 7487788 | Shopee's unique identifier for a shop. |
| code | int | 13 | Shopee's unique identifier for a shop. |
| timestamp | timestamp | 1660123176 | Timestamp that indicates the message was sent. |
Whether it is a brand registered by seller centre or open api, you will receive the brand review results (Registration before the toggle is turned on will no longer be pushed)
When a seller creates a brand through a seller centre or through v2.product.register_brand api, the Push mechanism will not push information at this time.
The seller will get a brand which status is pending. At this time, it is allowed for the seller to use this brand id to add and update products.
1.After the brand is approved, the developer will receive Push messages, such as:
Json
{"data":{"shop_id":748773,"register_brand":{"brand_id":3232262,"brand_name":"Omiz"},"register_result":{"result":"Brand Registration Successfully","reason":""}},"shop_id":74877883,"code":13,"timestamp":1660123176}
At this time, the status of the brand will change from pending to normal
- When the brand is rejected, the developer will receive Push messages, such as:
Json
{"data":{"shop_id":832182,"register_brand":{"brand_id":3228538,"brand_name":"Pop Up Squishy"},"register_result":{"result":"Brand Registration Reject","reason":"Merek tidak sah."}},"shop_id":832182994,"code":13,"timestamp":1660122620}
This brand will no longer be available, and the brand name of products that have used this brand in history will be changed to "No brand"
- After the brand is merged, the developer will receive Push messages, such as:
Json
{"data":{"shop_id":220181,"register_brand":{"brand_id":3228577,"brand_name":"Cavero"},"register_result":{"result":"Brand combined with an exist brand","reason":""},"combined_brand":{"brand_id":1017064,"brand_name":"Cavero"}},"shop_id":220140481,"code":13,"timestamp":1660124291}
This brand will no longer be available, and product brands that have used this brand in the past will display the new brand name
Update Log
| Date | Update Details |
|---|---|
| 2022-08-18 | New Push Mechanism |