- Taobao / Tmall Product Search
- Taobao / Tmall Order Manage
- Taobao / Tmall Order Pay
- Taobao / Tmall Message
Preview order
POST
/taobao/purchase/order/render
请求参数
Body 参数application/json
appKey
string
必需
appSecret
string
必需
need_supplychain_service
boolean
填写false
receiver_address
object
必需
country
string
一级地址 (国家)
state
string
必需
city
string
三级地址 (市)
district
string
必需
address
string
详细地址
zip
string
邮编
name
string
姓名
phone
string
电话
mobile_phone
string
手机号
warehouse_address
object
中国仓库地址
country
string
一级地址 (国家)
state
string
必需
city
string
三级地址 (市)
district
string
必需
address
string
详细地址
zip
string
邮编
phone
string
姓名
mobile_phone
string
电话
name
string
手机号
render_item_List
string
必需
示例
{
"appKey": "",
"appSecret": "",
"need_supplychain_service": false,
"receiver_address": {
"country": "中国",
"state": "上海市",
"city": "上海市",
"district": "张江区",
"address": "中华大街888号",
"zip": "000000",
"name": "张三",
"phone": "18888888888",
"mobile_phone": "18888888888"
},
"warehouse_address": {
"country": "中国",
"state": "上海市",
"city": "上海市",
"district": "张江区",
"address": "中华大街888号",
"zip": "000000",
"name": "张三",
"phone": "18888888888",
"mobile_phone": "18888888888"
},
"render_item_List": "[{\"itemId\":2048153758314474,\"quantity\":\"1\",\"skuId\":3357413213162}]"
}
示例代码
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://openapi.dajisaas.com/taobao/purchase/order/render' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "",
"appSecret": "",
"need_supplychain_service": false,
"receiver_address":
{
"country": "中国",
"state": "上海市",
"city": "上海市",
"district": "张江区",
"address": "中华大街888号",
"zip": "000000",
"name": "张三",
"phone": "18888888888",
"mobile_phone": "18888888888"
},
"warehouse_address":
{
"country": "中国",
"state": "上海市",
"city": "上海市",
"district": "张江区",
"address": "中华大街888号",
"zip": "000000",
"name": "张三",
"phone": "18888888888",
"mobile_phone": "18888888888"
},
"render_item_List": "[{\"itemId\":2048153758314474,\"quantity\":\"1\",\"skuId\":3357413213162}]"
}'
返回响应
🟢200成功
application/json
Body
code
integer
返回码
message
string
消息
data
object
业务数据
result
object
返回结果
code
string
返回码
requestId
string
必需
TraceId
string
必需
timestamp
integer
必需
traceId
string
必需
示例
{
"code": 200,
"message": "操作成功",
"data": {
"result": {
"data": {
"totalRealPayPrice": {
"amount": 1260,
"currency": "CNY"
},
"unavailableSkuList": [],
"renderItemList": [
{
"nick": "zhulinws286",
"itemPriceInfos": [
{
"itemId": 2048153758314474,
"quantity": 1,
"discountPrice": {
"amount": 2180,
"currency": "CNY"
},
"originPrice": {
"amount": 2180,
"currency": "CNY"
},
"skuId": 3357413213162
}
],
"sellerId": 172619986,
"mainlandShippingFee": {
"amount": 0,
"currency": "CNY"
},
"orderFee": {
"amount": 1480,
"currency": "CNY"
},
"chooseSupplyChainServices": []
}
]
},
"success": true
},
"code": "0",
"requestId": "21412b5817231079530794815",
"TraceId": "21410ddd17231079530752255e5d3b"
},
"timestamp": 1723107954115,
"traceId": "c804971a0a0b"
}

修改于 2024-08-08 16:21:54