Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/json
{
"purchase_id": "436353536",
"sub_purchase_orderId_list": [
"657574757"
],
"cancel_reason": "不想采购了",
"cancel_remark": "不想要了,mark一下"
}
Request Code Samples
curl --location 'https://ecommerce-api.shanjing-inc.com/rest/taobao-global/purchase/order/asyn/cancel' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"purchase_id": "436353536",
"sub_purchase_orderId_list": [
"657574757"
],
"cancel_reason": "不想采购了",
"cancel_remark": "不想要了,mark一下"
}'
Responses
application/json
{
"success": true,
"errorCode": "string",
"errorMsg": "string"
}
Modified at 2026-03-14 05:37:03