快工助手跨境电商知识与商机助手

For US local sellers: Item level tax rate added to the Order resource

TikTok Shop 官方资料 · TikTok Shop Partner Center 开发者文档 · 适合开发者

stable本次发布有变化全部展示

来自 TikTok Shop 官方资料快照 ·

打开官方原文 ↗
  1. 当前资料结构化阅读页
  2. 固定快照已留存,可追溯
  3. 官方原文可核对
查看技术与溯源信息
平台 / profile
TikTok Shop / profile.tiktok.docs_api
语言
en-US
发布版本
cn-20260909-2
标签
zhuge/sourceplatform/tiktok_shopaudience/developercategory/api_doctopic/compliancetopic/developer

资料正文

§1 What is changing?

We've introduced a new tax_rate property for the Order resource. This tax_rate represents the item's tax rate within an order, calculated by TikTok Shop. Factors influencing this rate include US Sales Tax regulations and the product's category. Developers can access the tax_rate in version 202309 of the Get Order List and Get Order Detail API. For example:

  • API request path: /order/202309/orders
  • API response:
{
    "code": 0,
    "data": {
        "orders": [
            {
                "line_items": [
                    {
                        "display_status": "TO_SHIP",
                        "id": "577086512123755123",
                        "is_gift": false,
                        "item_tax": [
                            {
                                "tax_amount": "21.2",
                                "tax_type": "SALES_TAX",
                                "tax_rate": "0.03"
                            }
                        ]
                    }
                ]
            }
        ]
    },
    "message": "Success",
    "request_id": "202203070749000101890810281E8C70B7"
}
#

§2 Which markets are affected?

The new property is applicable to local sellers in the US markets.

#

§3 Who is affected?

Developers utilizing version 202309 of either the Get Order List API or the Get Order Detail API will benefit from this update, enabling enhanced functionality in their applications.

#

§4 Which version is applicable?

Which version is applicable?

This tax_rate property is a feature exclusive to version 202309 of the Get Order List API or Get Order Detail API. To utilize it, ensure you're using the updated API path that includes the version number, as shown in the example: /order/202309/orders. Learn more about Upgrading to API version 202309.

#

§5 What action is required?

Developers who build order management features for sellers are required to integrate this new property and meet the tax reporting requirement of the sellers.

#