- Taobao / Tmall Product Search
- Taobao / Tmall Order Manage
- Taobao / Tmall Order Pay
- Taobao / Tmall Message
Cancel order
POST
/taobao/purchase/order/asyn/cancel
请求参数
Body 参数application/json
appKey
string
必需
appSecret
string
必需
purchase_id
string
必需
sub_purchase_orderId_list
array[string]
必需
cancel_reason
string
取消原因
cancel_remark
string
备注
示例
{
"appKey": "",
"appSecret": "",
"purchase_id": "200049962700",
"sub_purchase_orderId_list": [
"200049962701"
],
"cancel_reason": "取消的原因",
"cancel_remark": "备注"
}
示例代码
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/asyn/cancel' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "",
"appSecret": "",
"purchase_id": "200049962700",
"sub_purchase_orderId_list": ["200049962701"],
"cancel_reason": "取消的原因",
"cancel_remark": "备注"
}'
返回响应
🟢200成功
application/json
Body
code
integer
返回码
message
string
消息
data
object
业务数据
code
string
返回码
success
boolean
是否成功
requestId
string
必需
errorCode
null
错误码
TraceId
string
必需
errorMsg
null
错误消息
timestamp
integer
时间戳
traceId
string
traceId
示例
{
"code": 200,
"message": "操作成功",
"data": {
"code": "0",
"success": true,
"requestId": "2140f4a217231955990844284",
"errorCode": null,
"TraceId": "2140e7c617231955990811790e0deb",
"errorMsg": null
},
"timestamp": 1723195600231,
"traceId": "620d55d39363"
}

修改于 2024-08-16 11:16:25