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

(65) RMA Status Update

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 (65) RMA Status Update

Use this webhook to track the package-level lifecycle for the RMA object generated from approved items in the Aftersales Request.

#

§2 1. Trigger scenario

The RMA Status Update webhook is triggered in the following scenarios:

  1. RMA is created
  2. The RMA package is delivered and is pending the seller to review items to make a refund decision.
  3. The RMA items review and refund decision is completed.

Note: The RMA is automatically created once the Aftersales Request has been approved. The RMA decision is considered the second-review stage of the Aftersales journey.

#

§3 2. Data business parameters

PropertiesTypeExampleDescription
shop_idString7494049642642441621TikTok Shop identifier associated with the event.
timestampInt1732526400The time when this webhook was triggered, represented by Unix timestamp.
tts_notification_idString7327112393057371910Unique notification identifier for deduplication and tracing.
typeInt65Numeric webhook event type.
dataObject
└ rma_idString576486316948490002Unique identifier of the RMA.
└ aftersales_request_idString576486316948490001Parent aftersales request identifier.
└ return_roleStringBUYERRole that initiated the return flow. Possible enumerations: * BUYER * SELLER
└ rma_statusStringCurrent RMA status. Possible enumerations: * RMA_CREATED = The RMA has been created * PENDING_PACKAGE_REVIEW = The return package has been delivered and is pending seller package review. The seller has 2 business days SLA to respond with a refund review/decision. * PACKAGE_REVIEW_COMPLETED = The package review lifecycle is complete.
└ rma_request_create_timeInt1627587600Creation time of the RMA in Unix seconds.
└ rma_request_update_timeInt1644412885Last update time of the RMA in Unix seconds.
#

§4 Event example

Event example

{
  "type": 65,
  "tts_notification_id": "1111111113",
  "shop_id": "1234567890",
  "timestamp": 1644412889,
  "data": {
    "rma_id": "576486316948490002",
    "aftersales_request_id": "576486316948490001",
    "return_role": "BUYER",
    "rma_status": "RMA_CREATED",
    "rma_create_time": 1627587601,
    "rma_update_time": 1644412889
  }
}
#