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

Quality engine incident reason code

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 Overview

Use this page when your app needs to sync Quality Engine incident reasons to TikTok Shop through the Quality Engine order data exchange API. Quality Engine uses the reason code to understand why an order reconciliation incident happened. Send one of the reason codes listed on this page, match it to the applicable rule IDs, and keep the enum value exactly as written. Codes outside the list may be rejected by Quality Engine. Last reviewed: July 6, 2026, against the Data Reconciliation OpenAPI reference and the Developer dashboard rule tables.

#

§2 Key terms

TermMeaning
Quality EngineTikTok Shop's order and fulfillment reconciliation system. It compares TikTok Shop order and fulfillment data with the external platform where the seller syncs or fulfills orders.
A-LOCApp Caused-Late Dispatch Rate TikTok Shipping Cancel Order Count. In the Developer dashboard, A-LOC incidents are TikTok Shop orders canceled by the system for missing the shipping_due_time SLA with system_cancel_order_reason_shipping_timeout.
Risk orderAn order that is at risk of missing the TikTok Shop shipping SLA because order or fulfillment data is inconsistent between TikTok Shop and the external platform.
Orphan orderAn incident where the TikTok Shop order has no related order in the DTC channel or external platform.
Pre-RTSIn this page, a Pre-RTS incident means the order is shipped or has tracking information in the DTC channel, but the corresponding TikTok Shop order is not shipped or fulfilled in TikTok Shop. RTS refers to the ready-to-ship fulfillment stage.
DTC channelDirect-to-Consumer channel, such as Shopify, WooCommerce, BigCommerce, or Magento. In this page, "DTC channel", "channel platform", and "external platform" refer to the seller's external commerce system.
4PL connectorA fourth-party logistics connector or fulfillment integration that can exchange order, package, carrier, or tracking data between the seller's fulfillment system and TikTok Shop.
TTSTikTok Shop. Use "TikTok Shop" in user-facing text unless quoting an API field or existing rule name.
shipping_due_time / tts_slaThe TikTok Shop shipping deadline used by the Developer dashboard rule tables to detect A-LOC and risk-order incidents.
#

§3 Rule alignment

The reason code list on this page uses the R/A rule ID system from the Developer dashboard. It should not be mixed with the old FC-101 to FC-105 wording that remains in some dashboard notes.

Rule IDsIncident typeDashboard definitionReason code category on this page
A1A-LOCTikTok Shop order is canceled for shipping timeout, and the order is not present or not sent to the external platform.Orphan Order
A2A-LOCTikTok Shop order is canceled for shipping timeout; order exists in the DTC channel, but DTC tracking number is null.Not covered by the current reason code tables. Do not invent a reason code.
A3A-LOCTikTok Shop order is canceled for shipping timeout; order exists in the DTC channel and DTC tracking number is not null.Pre-RTS
A4A-LOCTikTok Shop order is canceled for shipping timeout; TikTok Shop tracking and DTC tracking are both not null.Not covered by the current reason code tables. Do not invent a reason code.
R0Risk orderTikTok Shop order is on hold; DTC order exists and has tracking.Not covered by the current reason code tables.
R1Risk orderTikTok Shop order is awaiting shipment, and no related DTC order exists.Orphan Order
R2Risk orderTikTok Shop order is partially shipping, and no related DTC order exists.Orphan Order
R3 / R4Risk orderShort-time built-in rules for awaiting shipment or partially shipping orders where the DTC order exists but tracking is null near the SLA deadline.Not covered by the current reason code tables.
R5Risk orderTikTok Shop order is awaiting shipment; DTC order exists and DTC tracking number is not null.Pre-RTS
R6Risk orderTikTok Shop order is partially shipping; DTC order exists and DTC tracking number is not null.Pre-RTS
R7Risk orderTikTok Shop order is awaiting collection; TikTok Shop and DTC tracking are both not null after the TikTok Shop SLA.Not covered by the current reason code tables.

The Developer dashboard table includes FC-101 to FC-105 only as legacy "Not Existing Reason" wording. These FC codes are not listed as valid reason codes on this page. Do not send FC-101 to FC-105 in issue_reason unless the API reference explicitly lists them for your app version.

#

§4 API usage

Use the Quality Factory Order Data Import API to sync order data and incident reason codes.

ItemValue
Method and pathPOST /data_reconciliation/202401/orders/import
Query parametershop_cipher when required for the shop context. Get it from the authorized shop data.
Required headersx-tts-access-token, Content-Type: application/json
Request field for reason codeorders[].issue_reason
Reason code formatUppercase enum string, exactly as listed in this page.
Related API docsQuality Engine Order Data Exchange API, Reason code reference

Version note: POST /data_reconciliation/202309/orders/sync and POST /data_reconciliation/202310/orders/import use orders[].not_exist_reason. The 202401 API uses orders[].issue_reason. Use the field name from the endpoint version you call. Minimal request example:

{
  "orders": [
    {
      "order_id": "7021436810468230477",
      "channel_type": "SHOPIFY",
      "channel_order_id": "8021436810468230477",
      "channel_order_status": "OPEN",
      "channel_financial_status": "PAID",
      "channel_fulfillment_status": "FULFILLED",
      "channel_order_update_time": "1692163668",
      "issue_reason": "SELLER_TIKTOKSHOP_AUTHORIZATION_REVOKED",
      "packages": [
        {
          "package_id": "RN141567632MY",
          "shipping_provider_name": "UPS",
          "tracking_number": "LX542261779US"
        }
      ]
    }
  ]
}

channel_order_update_time is the order update timestamp on the DTC channel, not the API call time. It must be a 10-digit Unix timestamp in seconds and must be earlier than the current timestamp.

#

§5 Reason code quick guide

Reason categorySuitable rulesCodesAPI field
Orphan OrderR1 / R2 / A1Use the Orphan Order reason code table below.issue_reason
Pre-RTSA3 / R5 / R6Use the Pre-RTS reason code table below.issue_reason
#

§6 Orphan Order reason codes

Use these codes when there is no related order in the DTC channel.

Reason CategorySuitable for RulesReason CodeDescription
Orphan OrderR1 / R2 / A1SELLER_TIKTOKSHOP_AUTHORIZATION_REVOKEDSeller revoked TikTok Shop authorization for the app.
Orphan OrderR1 / R2 / A1SELLER_UNINSTALLED_DTC_APPSeller uninstalled the app from the DTC channel platform.
Orphan OrderR1 / R2 / A1SELLER_NOT_GRANT_DTC_PERMISSIONSeller did not grant the corresponding DTC channel API permissions to the app.
Orphan OrderR1 / R2 / A1SELLER_DTC_STORE_UNAVAILABLESeller's DTC channel store is unavailable.
Orphan OrderR1 / R2 / A1SELLER_TIKTOKSHOP_STORE_INACTIVESeller's TikTok Shop store is inactive.
Orphan OrderR1 / R2 / A1SELLER_DTC_NO_SKUNo corresponding SKU was found for the seller's DTC channel products.
Orphan OrderR1 / R2 / A1SELLER_DTC_ABNORMAL_PRODUCT_STATUSProduct status is abnormal on the seller's DTC channel platform.
Orphan OrderR1 / R2 / A1SELLER_DTC_PRODUCT_OUT_OF_STOCKProducts on the seller's DTC channel platform are out of stock.
Orphan OrderR1 / R2 / A1SELLER_TIKTOKSHOP_ORDER_AMOUNT_ZEROOrder amount in the seller's TikTok Shop order is 0.
Orphan OrderR1 / R2 / A1SELLER_APP_OWE_FEESeller used the app but did not renew it, or the seller is out of quota.
Orphan OrderR1 / R2 / A1SELLER_ABANDON_SYNC_TIKTOKSHOP_ORDERSeller opted not to synchronize TikTok Shop orders.
Orphan OrderR1 / R2 / A1APP_MISSED_WEBHOOKApp missed TikTok Shop order webhooks.
Orphan OrderR1 / R2 / A1APP_ORDER_RETRIEVE_API_FAILEDApp failed to retrieve orders by calling TikTok Shop APIs.
Orphan OrderR1 / R2 / A1APP_ORDER_RETRIEVE_API_NOT_MATCH_DTC_FIELDOrder information retrieved by the app from TikTok Shop APIs is incomplete or does not match the DTC channel field mapping.
Orphan OrderR1 / R2 / A1APP_CALL_DTC_CREATE_ORDER_API_FAILEDApp failed to create the order by calling the DTC channel API.
Orphan OrderR1 / R2 / A1OTHERUse only when none of the listed Orphan Order codes matches the incident.
#

§7 Pre-RTS reason codes

Use these codes when the order is shipped in the DTC channel but not shipped in TikTok Shop.

Reason CategorySuitable for RulesReason CodeDescription
Pre-RTSA3 / R5 / R6INVALID_TRACKING_NUMBERInvalid tracking number entered in the DTC channel. Examples: the tracking number has extra spaces or tabs, or the tracking number is incorrect but accepted by the DTC channel. TikTok Shop rejects this fulfillment.
Pre-RTSA3 / R5 / R6UNSUPPORTED_CARRIER_TRACKING_NUMBERThe carrier is supported by the DTC channel but unsupported by TikTok Shop. TikTok Shop rejects this fulfillment.
Pre-RTSA3 / R5 / R6ORDER_NOT_ELIGIBLE_FOR_FULFILLMENTThe package is shipped in the DTC channel but not in TikTok Shop because TikTok Shop has a cancellation or refund request for the order. TikTok Shop rejects this fulfillment.
Pre-RTSA3 / R5 / R6FULFILL_UNIT_OR_ORDER_NUMBER_NOT_COMBINED_CORRECTLYThe package or order fulfillment call to TikTok Shop failed because the tracking number was used in another order without correctly combining orders.
Pre-RTSA3 / R5 / R6FULFILL_UNIT_OR_ORDER_NUMBER_NOT_FOUNDThe package or order fulfillment call to TikTok Shop failed because the seller combined or split the order in TikTok Shop or the DTC channel before fulfillment. TikTok Shop rejects this fulfillment.
Pre-RTSA3 / R5 / R6FULFILLMENT_FAILURE_DUE_TO_RATE_LIMITThe package or order fulfillment call to TikTok Shop failed because the app exceeded the rate limit and did not retry.
Pre-RTSA3 / R5 / R6FULFILLMENT_FAILURE_DUE_TO_NO_RETRY_LOGICThe app called order fulfillment, but TikTok Shop returned a temporary internal error and the app did not retry.
Pre-RTSA3 / R5 / R6FULFILLMENT_FAILURE_DUE_TO_NO_API_CALLNo order fulfillment call was made for this order from the connector app.

The current Pre-RTS list does not define an OTHER code. Do not send OTHER for Pre-RTS incidents unless a newer endpoint reference explicitly adds it. If an incident does not match any listed Pre-RTS code, confirm the expected code through the latest Quality Engine rule definition or Partner Center support.

#

§8 Validation checklist

Before syncing a reason code:

  1. Confirm the incident category: Orphan Order or Pre-RTS.
  2. Confirm the rule ID in the Developer dashboard: R1 / R2 / A1 for Orphan Order, or A3 / R5 / R6 for Pre-RTS.
  3. Pick the most specific reason code from the corresponding table.
  4. Send the code exactly as listed in orders[].issue_reason for the 202401 API.
  5. Do not send FC-101 to FC-105, lower-case enum values, or codes from another category unless the endpoint reference explicitly supports them.
#