- 淘宝
- 1688
- 商品
- 订单
- 售后
- 消息回调
- 购物车
- 营销
- 基础
- 仓库物流
创建国际物流订单
POST
/open/pp/logistics/orderBookingFreight
请求参数
Query 参数
timestamp
string
必需
sign
string
必需
Body 参数application/json
renderId
string | null
可选
receiverAddress
object (ReceiverAddressTO)
可选
name
string | null
可选
email
string | null
可选
phone
string | null
可选
mobilePhone
string | null
可选
address
string | null
可选
taxId
string | null
可选
country
string | null
可选
city
string | null
可选
zip
string | null
可选
state
string | null
可选
lineItems
array [object {8}] | null
可选
itemId
string | null
可选
skuId
string | null
可选
quantity
integer | null
可选
title
string | null
可选
imageUrl
string | null
可选
freightInfo
object (FreightInfoTO)
可选
currency
string | null
可选
price
string | null
可选
tmallOrderInfo
object (TmallOrderInfoTO)
可选
tmallOrderId
string | null
可选
remark
string | null
可选
示例
{
"renderId": "FF2024080200007",
"tmallOrderInfo": {
"tmallOrderId": "123123444"
},
"receiverAddress": {
"country": "US",
"state": "California",
"city": "VALLEY VLG",
"zip": "91607",
"address": "5818 WHITSETT AVE 401",
"name": "Ofir Birinbaum",
"phone": "5083326888",
"mobilePhone": "5083326888",
"email": "1229220680@qq.com"
},
"lineItems": [
{
"itemId": "2048020617114736",
"skuId": "413185732720",
"quantity": 1,
"title": "这是商品1",
"imageUrl": "url",
"freightInfo": {
"serviceId": "1",
"companyName": "",
"serviceCategory": ""
}
},
{
"itemId": "2048232789087639",
"skuId": "4970432383383",
"quantity": 2,
"title": "这是商品2",
"imageUrl": "url",
"freightInfo": {
"serviceId": "2",
"companyName": "",
"serviceCategory": ""
}
}
]
}
示例代码
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/orderBookingFreight?timestamp&sign' \
--header 'Content-Type: application/json' \
--data-raw '{
"renderId": "FF2024080200007",
"tmallOrderInfo": {
"tmallOrderId": "123123444"
},
"receiverAddress": {
"country": "US",
"state": "California",
"city": "VALLEY VLG",
"zip": "91607",
"address": "5818 WHITSETT AVE 401",
"name": "Ofir Birinbaum",
"phone": "5083326888",
"mobilePhone": "5083326888",
"email": "1229220680@qq.com"
},
"lineItems": [
{
"itemId": "2048020617114736",
"skuId": "413185732720",
"quantity": 1,
"title": "这是商品1",
"imageUrl":"url",
"freightInfo": {
"serviceId": "1",
"companyName": "",
"serviceCategory": ""
}
},
{
"itemId": "2048232789087639",
"skuId": "4970432383383",
"quantity": 2,
"title": "这是商品2",
"imageUrl":"url",
"freightInfo": {
"serviceId": "2",
"companyName": "",
"serviceCategory": ""
}
}
]
}'
返回响应
🟢200成功
application/json
Body
errorCode
integer | null
返回码
errorMsg
string | null
返回码对应信息
success
boolean | null
可选
data
object (OrderBookingFreightResult)
返回内容
orderId
string | null
可选
orderFee
object (FeeTO)
可选
subOrders
array[object (FreightSubOrderTO) {2}] | null
可选
示例
{
"errorCode": 200,
"errorMsg": null,
"success": true,
"data": {
"orderId": "21",
"orderFee": {
"amount": "322.92",
"currency": "USD"
},
"subOrders": [
{
"itemInfos": [
{
"itemId": "2048020617114736",
"skuId": "413185732720",
"quantity": 1,
"title": "这是商品1"
}
],
"internationalLogisticInfos": {
"logisticNumer": "FARJP2408000013YQ",
"logisticCompanyName": "UCS",
"trackingUrl": "https://www.far800.com/logistics/result?key=FARJP2408000013YQ",
"logisticType": "UCS"
}
},
{
"itemInfos": [
{
"itemId": "2048232789087639",
"skuId": "4970432383383",
"quantity": 2,
"title": "这是商品2"
}
],
"internationalLogisticInfos": {
"logisticNumer": "FARJP2408000014YQ",
"logisticCompanyName": "UCS",
"trackingUrl": "https://www.far800.com/logistics/result?key=FARJP2408000014YQ",
"logisticType": "UCS"
}
}
]
}
}
修改于 2025-01-01 06:32:46