官网API鉴权说明;请求参数和签名方法
1. 超过下单时间40天,不允许取消
2. 已经有物流信息,不允许取消
curl --location --request POST 'https://openapi.yundaex.com/openapi-api/v1/accountOrder/cancelBmOrder' \
--header 'app-key;' \
--header 'sign;' \
--header 'req-time;' \
--header 'Content-Type: application/json' \
--data-raw '{
"appid": "999999",
"partner_id": "YUNDA",
"secret": "a123456",
"orders": [
{
"order_serial_no": "2012121715001",
"mailno": "5100709876543"
}
]
}'
{
"code": "0000",
"message": "请求成功",
"result": true,
"data": [
{
"order_serial_no": "2012121715001",
"mail_no": "5100709876543",
"status": "1",
"msg": "订单取消成功"
}
]
}