未完成订单-取消订单优惠
接口信息
- 接口地址:
{your-site-url}/api/skill/order/remove-pending-order-discount
- 基础 URL:
{your-site-url} 需替换为你自己的独立站 URL 地址,如 https://your-domain.com/apimanager666
- 请求方式:
POST
- 说明: 此接口用于移除未完成订单的折扣优惠。仅未完成订单可使用此 API,待处理订单不可使用。
认证
请求头中需要携带 skill-access-token:
| Header |
值 |
skill-access-token |
{your-skill-access-token} (请替换为你自己的 token) |
Content-Type |
application/json |
请求参数 (JSON Body)
| 字段 |
类型 |
必填 |
说明 |
order_number |
string |
是 |
订单编号 |
请求示例
cURL
curl --location --request POST '{your-site-url}/api/skill/order/remove-pending-order-discount' \
--header 'skill-access-token: {your-skill-access-token}' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_number": "FECE602665703920188"
}'
返回结果
code 为 200 表示调用成功;code 不为 200 表示调用失败。
成功响应
{
"code": 200,
"data": [],
"message": "success"
}
返回字段说明
| 字段 |
类型 |
说明 |
code |
Number |
状态码,200 表示成功 |
message |
String |
执行结果的文字描述 |
data |
Array |
返回数据(成功时为空数组) |
注意事项
- 仅未完成订单可使用此 API,待处理订单不可使用
- 未完成订单通过 订单-详细 中
recall_status 判断:1(不可召回)或 2(可召回)为未完成订单
- 与 未完成订单-更改订单优惠 对应,该接口用于设置折扣,本接口用于移除折扣