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

Explanation of the impact of CA65 attributes on California sales eligibility

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 Explanation of the impact of CA65 attributes on California sales eligibility

#

§2 1.Summary

1.Summary

CA65-related attributes will permanently remain optional on the API side. However, if these attributes are not provided, the product will not be eligible for sale in California. Consumers in California will see the message “This item cannot be delivered to your region.”

#

§3 2. Impacted Fields

2. Impacted Fields

The following core attribute fields are related to California sale eligibility:

Attribute NameAttribute IDAttribute ValueAttribute Value ID
CA Prop 65: Carcinogens101400Yes1000058
No1000059
CA Prop 65: Repro. Chems101395Yes1000058
No1000059
Carcinogen (Cascading Field)101397Specific chemical substance enum values (multi-select)-

Note: Carcinogen is a cascading field. It is triggered only when CA Prop 65: Carcinogens is set to Yes.

#

§4 3. API Behavior

3. API Behavior

At the API integration level, the system will return warning messages in the following ways:

  • preCheck API: If CA65 attributes are missing, a warning will be returned in pre_check_results.
{
  "pre_check_item": "CA65_COMPLIANCE_MISSING",
  "pre_check_details": [
    {
      "short_reason": "Missing CA65 Compliance Information",
      "long_reason": "This product is missing required CA65 compliance information and will be restricted from selling in California. Please complete the required CA65 attributes in the Compliance section.",
      "related_fields": [
        "PRE_CHECK_FIELD_CA65_COMPLIANCE"
      ]
    }
  ]
}
  • Create Product API: If CA65 attributes are not included when creating a product, a warning will be returned in warnings.
"warnings": [
  {
    "message": "The CA65 compliance information is missing. This product will be restricted from selling in California. Please complete the required CA65 attributes in the Compliance section."
  }
]

Important: Missing CA65 attributes will not block product publication. The product can still be published successfully, but its sale eligibility in California will be restricted.

#