- 淘宝
- 1688
- 商品
- 订单
- 售后
- 消息回调
- 购物车
- 营销
- 基础
- 仓库物流
更新国内物流信息
POST
/open/pp/logistics/updateLogisticInfo
请求参数
Query 参数
timestamp
string
必需
sign
string
必需
Body 参数application/json
orderId
string | null
可选
tmallOrderId
string | null
可选
logisticInfos
array [object {3}] | null
可选
lineItem
object
可选
logisticNumer
string | null
可选
domesticLogisticInfo
array[object (InnerLogisticInfoTO) {3}] | null
可选
示例
{
"orderId": "21",
"tmallOrderId": "12345667",
"logisticInfos": [
{
"lineItem": {
"itemId": "2048020617114736",
"skuId": "413185732720",
"quantity": 1,
"title": "这是商品1",
"imageUrl": "url"
},
"logisticNumer": "FARJP2408000013YQ",
"domesticLogisticInfo": [
{
"logisticNumer": "SF1234521212678",
"logisticCompanyName": "顺丰",
"rtsTime": "1754342534"
},
{
"logisticNumer": "YT122323345678",
"logisticCompanyName": "圆通",
"rtsTime": "1754342534"
}
]
},
{
"lineItem": {
"itemId": "2048232789087639",
"skuId": "4970432383383",
"quantity": 2,
"title": "这是商品2",
"imageUrl": "url"
},
"logisticNumer": "FARJP2408000014YQ",
"domesticLogisticInfo": [
{
"logisticNumer": "SF12345444111678",
"logisticCompanyName": "顺丰",
"rtsTime": "1754342534"
}
]
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.pandapon.com/open/pp/logistics/updateLogisticInfo?timestamp&sign' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderId": "21",
"tmallOrderId": "12345667",
"logisticInfos": [
{
"lineItem": {
"itemId": "2048020617114736",
"skuId": "413185732720",
"quantity": 1,
"title": "这是商品1",
"imageUrl": "url"
},
"logisticNumer": "FARJP2408000013YQ",
"domesticLogisticInfo": [
{
"logisticNumer": "SF1234521212678",
"logisticCompanyName": "顺丰",
"rtsTime": "1754342534"
},
{
"logisticNumer": "YT122323345678",
"logisticCompanyName": "圆通",
"rtsTime": "1754342534"
}
]
},
{
"lineItem": {
"itemId": "2048232789087639",
"skuId": "4970432383383",
"quantity": 2,
"title": "这是商品2",
"imageUrl": "url"
},
"logisticNumer": "FARJP2408000014YQ",
"domesticLogisticInfo": [
{
"logisticNumer": "SF12345444111678",
"logisticCompanyName": "顺丰",
"rtsTime": "1754342534"
}
]
}
]
}'
返回响应
🟢200成功
application/json
Body
errorCode
integer | null
返回码
errorMsg
string | null
返回码对应信息
success
boolean | null
可选
data
null | null
返回内容
示例
{
"errorCode": 200,
"errorMsg": "",
"success": true,
"data": null
}
修改于 2025-01-01 06:32:46