1、 由平台提供,开发者可发送清柜数据进行清柜
2、 URL地址:https://public.zjuhe.cn/api/clear_cabinet
3、 请求参数
变量名 | 必填 | 类型 | 说明 |
encoding | 是 | String(16) | 专属编码(例:zng1458789541258),双方交互专属编码 |
APPID | 是 | String(20) | 公众号ID(例:wx158fs586sad658s),微信公众号专属标识 |
terminal_id | 是 | String(15) | 终端ID(例:864424040318777) |
cleaning_method | 是 | Int(1) | 清柜方式(1:清柜不退款,2清柜退款) |
chest_id | 是 | Int(10) | 柜门号(柜门为0时全清,柜门为1时清1号柜门) |
4、举例如下:
$date=[
'encoding' =>'zng1458789541258',
'APPID' =>'wx158fs586sad658s',
'terminal_id' =>'869467040630432',
'cleaning_method' =>1 ,
'chest_id' =>1
];
$result = get_http_content('https://public.zjuhe.cn/api/clear_cabinet, 'POST',$date);
5、 json返回结果
注:柜门全清时需要两到三分钟的时间进行清柜处理
变量名 | 必填 | 说明 |
code | 是 | 状态码,200为正常,其他均为不正常(1024) |
msg | 是 | 成功或者失败的说明(例:清柜成功 /清柜失败) |
data | 是 | 该接口返回具体的数值 |