- Taobao
- Goods
- Order
- After-sales service
- Message callback
- Shopping cart
- 1688
- Goods
- Order
- Developers submit and pay 1688 orders in bulkPOST
- Preview data before creating an order (batch different merchants)POST
- Create orders (different merchants)POST
- Obtain the logistics tracking information of the orderGET
- Order list paging queryPOST
- Preview data before creating an orderPOST
- Create an orderPOST
- Cancel the order before paymentPOST
- Order paymentGET
- The buyer confirms the receipt of goodsPOST
- After-sales service
- Message callback
- Shopping cart
- Marketing
- Foundations
- Warehouse logistics
The buyer confirms the receipt of goods
POST
/alibaba/order/receivegoods
订单
请求参数
Header 参数
access-key
string
必需
默认值:
58c0201dfdf148eca63cbf6bb5e7cf03
nonce-str
string
可选
默认值:
nonce-str
timestamp
string
必需
默认值:
1715669977082
user-id
string
必需
默认值:
2100007341207
signature
string
必需
默认值:
B7F83FE2ADC8D8F044F2E01F0FFE8C80
Body 参数application/json
orderId
integer
订单ID
orderEntryIds
array[integer]
子订单ID
示例
{
"orderId": 0,
"orderEntryIds": [
0
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/alibaba/order/receivegoods' \
--header 'access-key;' \
--header 'nonce-str: nonce-str' \
--header 'timestamp;' \
--header 'user-id;' \
--header 'signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderId": 0,
"orderEntryIds": [
0
]
}'
返回响应
🟢200成功
application/json
Body
requestId
string
请求ID
code
integer
返回码
developId
integer
开发者ID
msg
string
返回描述
data
object
返回信息
success
boolean
是否成功
errorInfo
string
错误信息
errorCode
string
错误码
示例
{
"requestId": null,
"code": 200,
"developId": null,
"msg": "成功",
"data": {
"success": true,
"errorInfo": "",
"errorCode": ""
}
}
修改于 2025-02-24 07:13:31