接口 cabinet.order.suspicious.update
接口说明
更新可疑订单处理结果
业务参数
| 参数名称 | 类型 | 是否必须 | 说明 |
|---|---|---|---|
| id | string | Y | 订单 ID |
| dealResultStatus | number | Y | 处理结果 1=本单未产生消费 2=修改订单明细结算 |
| dealRemarks | string | N | 处理意见 |
| products | array | N | 商品列表 |
| sopAccountId | string | Y | 操作员账号 ID |
请求示例
{
"id": "686cc0b5e436080010813512",
"dealResultStatus": 2,
"dealRemarks": "已核实,订单正常",
"products": [
{
"BarCode": "6954767432076",
"Name": "雪碧500mlPET瓶",
"Qty": 1,
"ProviderProductID": "6954767432076_0"
}
],
"sopAccountId": "60ffaca2ab9fe400109075eb"
}
{
"id": "68d8ce672650e90011731ad8",
"dealResultStatus": 1,
"dealRemarks": "已核实,订单正常",
"products": [
],
"sopAccountId": "60ffaca2ab9fe400109075eb"
}
返回示例
{
"error_code": 0,
"error_msg": "SUCCESS",
"sub_error_code": null,
"sub_error_msg": null,
"data": null
}