In this article
LS Central integrates with Shopee by consuming specific APIs to support product synchronization, discount management, order processing, and other marketplace operations.
The following table lists the Shopee APIs used in LS Central, along with their purpose and typical usage:
Product Management APIs
| Functionality | Endpoint | 
|---|---|
| Add Item | POST /api/v2/product/add_item | 
| Update Item | POST /api/v2/product/update_item | 
| Delete Item | POST /api/v2/product/delete_item | 
| Get Marketplace Categories | GET /api/v2/product/get_category | 
| Get Marketplace Attributes | GET /api/v2/product/get_attribute_tree | 
| Update Price | POST /api/v2/product/update_price | 
| Update Inventory | POST /api/v2/product/update_stock | 
| Upload Image | POST /api/v2/media_space/upload_image | 
Category Management APIs
| Functionality | Endpoint | 
|---|---|
| Add Shop Category | POST /api/v2/shop_category/add_shop_category | 
| Update Shop Category | POST /api/v2/shop_category/update_shop_category | 
| Delete Shop Category | POST /api/v2/shop_category/delete_shop_category | 
| Add Items to Category | POST /api/v2/shop_category/add_item_list | 
| Delete Items from Category | POST /api/v2/shop_category/delete_item_list | 
See Shopee Developer Guide – Products and Categories for more details.
Variants Management APIs
| Functionality | Endpoint | 
|---|---|
| Add Variants to Items | POST /api/v2/product/init_tier_variation | 
| Update/Delete Variants | POST /api/v2/product/update_tier_variation | 
See Shopee Developer Guide – Variants for more details.
Discounts APIs
| Functionality | Endpoint | 
|---|---|
| Add Discount | POST /api/v2/discount/add_discount> | 
| Link Items to Discount | POST /api/v2/discount/add_discount_item | 
| Delete Discount | POST /api/v2/discount/delete_discount | 
| Delete Discount from Discount | POST /api/v2/discount/delete_discount_item | 
| Update Discount Items | POST /api/v2/discount/update_discount_item | 
Order Management APIs
| Functionality | Endpoint | 
|---|---|
| Get Orders | GET /api/v2/order/get_order_list | 
| Get Order Detail | GET /api/v2/order/get_order_detail | 
| Cancel Order | POST /api/v2/order/cancel_order | 
| Get Shipment List | GET /api/v2/order/get_shipment_list | 
| Ship Order | POST /api/v2/logistics/ship_order | 
| Search Package List | GET /api/v2/order/search_package_list | 
| Get Package Detail | GET /api/v2/order/get_package_detail | 
See Shopee Developer Guide – API Reference for the list of all APIs.
Note: This release supports only the APIs listed here. Support for additional Shopee API endpoints may be introduced in future updates.