data 透传闭环:发货数据回显、回调带回,并限制 2KB

- 「查询发货数据」响应新增 data(下单透传原样回显,供自建发货页预填/展示)
- 回调 payload 带回 data(下单传 → 回调收,商户对接免回查)
- 创建订单 data 限制最长 2048 字节
- 文档更新:data 用途(自建页预填/回调/上游查单约定字段)、发货数据与回调示例
- 单测覆盖 data 回显
This commit is contained in:
yml2213
2026-08-03 14:32:08 +08:00
parent a44f58cd0f
commit f95075e2e4
6 changed files with 36 additions and 5 deletions
+3 -2
View File
@@ -490,14 +490,15 @@ const callbackPayloadExample = `{
"client_order_no": "shop-10001",
"order_status": "delivered",
"can_ship": false,
"product": { "sku": "suit_pink_sheep", "name": "套装-糯粉咩咩" },
"product_sku": "suit_pink_sheep",
"quantity": 1,
"amount": 105,
"currency": "POINT",
"provider_order_no": "PROV-xxxx",
"failure_reason": "",
"created_at": "2026-08-03T10:00:00+08:00",
"delivered_at": "2026-08-03T10:11:20+08:00"
"delivered_at": "2026-08-03T10:11:20+08:00",
"data": { "game_account": "4808146277", "game_channel": "ios-wechat", "role_name": "玩家名" }
}
}`