- Taobao
- Goods
- Order
- After-sales service
- Message callback
- Shopping cart
- 1688
- Goods
- Order
- Developers submit and pay 1688 orders in bulk
- Preview data before creating an order (batch different merchants)
- Create orders (different merchants)
- Obtain the logistics tracking information of the order
- Order list paging query
- Preview data before creating an order
- Create an order
- Cancel the order before payment
- Order payment
- The buyer confirms the receipt of goods
- After-sales service
- Message callback
- Shopping cart
- Marketing
- Foundations
- Warehouse logistics
Modify the pre-warehouse information of the order
POST
/open/order/updateWarehouse
订单
请求参数
Header 参数
access-key
string
必需
默认值:
58c0201dfdf148eca63cbf6bb5e7cf03
nonce-str
string
可选
默认值:
nonce-str
timestamp
string
必需
默认值:
1715669977082
user-id
string
必需
默认值:
2100007341207
signature
string
必需
默认值:
B7F83FE2ADC8D8F044F2E01F0FFE8C80
Body 参数application/json
warehouseAddress
string
前置仓地址
warehouseName
string
前置仓名称
orderId
string
订单id
示例
{
"warehouseAddress": "广西省",
"warehouseName": "一号仓库",
"orderId": "1024285237573584051"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/open/order/updateWarehouse' \
--header 'access-key;' \
--header 'nonce-str: nonce-str' \
--header 'timestamp;' \
--header 'user-id;' \
--header 'signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
"warehouseAddress": "广西省",
"warehouseName": "一号仓库",
"orderId": "1024285237573584051"
}'
返回响应
🟢200成功
application/json
Body
code
integer <int32>
返回码
data
object
返回内容
developId
string
开发者id
msg
string
返回码对应信 息
requestId
string
请求id
示例
{
"requestId": "cab21c3a02a54387af675dd5735bb0fd",
"code": 200,
"developId": "1022622888387149826",
"msg": "成功",
"data": true
}
修改于 2025-02-24 06:52:49