订单通知-取消订单
说明:

由sctt主动推送订单取消状态,请求示例为单个商户推送数据

请求方式

POST

请求方式:POST(HTTPS
请求地址:Please contact the op to add the order cancellation notification address
请求包体:
{
    "merchant_id":255456,
    "request_time":"",
    "sign":"",
    "orderlist":[{
        "trade_number":"",
        "order_code": 123456,
        "cancel_type":3,
        "cancel_status":2,
        "remark":"",
        "subjoin":{
            "processing":"",
            "itemid":"",
            "number":"",
            "cancel_id":"",
            "cancel_number":""
        }
    }]
}

参数说明:
参数 必须 类型 说明
merchant_id bigint 商户编号
request_time string 用户请求的当前时间,格式:“yyyy-MM-dd HH:mm:ss”
sign string 签名
orderlist list 订单数据
- trade_number string 商户订单编号
- order_code bigint 订单编号
- cancel_type int 取消类型(1不可取消,2人工取消,3规则取消,4 不可退改 ,5-预约前免费取消,预约后不可取消
- cancel_status int 取消状态(1-取消失败,2-取消等待,3-取消成功
- remark string 拒绝备注
- subjoin object 附加信息
- - processing string 附加信息
- - itemid string 附加信息
- - number string 附加信息
- - cancel_id string 取消使用
- - cancel_number string 取消使用
返回结果:
{
    "code": 0,
    "msg": "ok",
    "data": null
  }

参数说明:
参数 类型 说明
code int 处理结果返回码
msg string 处理结果信息
data object 返回对象
状态码说明:
状态码 说明
0 成功