来自 TikTok Shop 官方资料快照 ·
- 当前资料结构化阅读页
- 固定快照已留存,可追溯
- 官方原文可核对
资料正文
§1 Summary
Promotions API have been now expanded to allow sellers to create non-sellable gift products that can be added when a purchase is made, along with the ability to provide free samples. Virtual bundles can also be created by the API.
§2 API Changes
#§3 Non-Sellable Gift With Purchase (NS-GWP)
Non-Sellable Gift With Purchase (NS-GWP)
§4 Creating NS-GWP
Creating NS-GWP
Create non-sellable products via API (connector), as integrators (developers) can mark a non-sellable product tag in connector. Then call the Create Product API and select is_not_for_sale=true. This creates a non-sellable product in TikTok Shop after synchronization.
§5 Getting NS-GWP
Getting NS-GWP
Seller creates non-sellable products in TikTok Shop Seller Center. Developers can get non-sellable products from Seller Center by calling the Get Product API and checking for is_not_for_sale=true. A mapping relationship with the seller's product in the partner platform is created.
§6 Change product type between sellable and non-sellable
Change product type between sellable and non-sellable
In the case a seller chooses the incorrect type, and wants to change the product type from sellable to non-sellable or vice verse. TikTok shop policy requires products to be recreated when changing between sellable and non-sellable. It is up to the developer to decide whether the original product will be removed or deactivated.
§7 Shopify Considerations
Shopify Considerations
In TikTok Shop Get Order Detail API, if it is a GWP (including GWP or NS-GWP) order, the order_line information for the gift is shown as follows:
- original_price, sale_price, platform_discount, seller_discount are all
0, and the sku_type'sis_gift=true(Please refer to the left picture) - Item_line_type=normal (Please refer to the right picture)
Image Image But when this type of order is passed into Shopify, the gift product's original price is still being displayed by Shopify , but the actual payment subtotal is 0, resulting in sellers reconciliation error (Total order value is not equal to customer paid). So as a Shopify connector, you need to add a 100% seller discount code for the gift in GWP order, to help sellers reconcile. (Please refer to the right picture)
<div style="text-align: center"><img src="https://p16-arcosite-sg.ibyteimg.com/tos-alisg-i-k9wyc2ijk0-sg/52e2a4cf103f40e5925488c0ca4a91c6~tplv-k9wyc2ijk0-image.image" width="850px" /></div>
Example payload with 100% discount to add for gift order_line. Image
§8 Free Sample
Free Sample
§9 Recognizing Free Sample order
Recognizing Free Sample order
The following steps can explain how to recognize free samples
- If
is_sample_order=true - AND if
payment.original_total_product_priceis zero ->order.paymentis null;order.payment.original_total_product_priceis empty or "0" - With above two conditions, developers can recognize Free Sample order 'request from seller'
- Adding 100% seller discount code for this type of order in Shopify.
