注册
1232
  1. 柜门类接口
  2. 柜门信息修改

1)由平台提供,开发者可修改某柜门信息

2)URL地址:https://public.zjuhe.cn/api/to_chest_add

3)请求参数

变量名

必填

类型

说明

encoding

String(16)

专属编码(例:zng1458789541258),双方交互专属编码

APPID

String(20)

公众号ID(例:wx158fs586sad658s),微信公众号专属标识

terminal_id

String(15)

终端ID(例:864424040318777)

chest_id

Int(10)

柜门ID

type

Int(2)

柜门类型( 1:启用,2:停用 )

cls_pwd

Int(6)

柜门开柜密码

 

4)举例如下:

$date=[

   'encoding'  =>'zng1458789541258',

 'APPID' =>'wx158fs586sad658s',

'terminal_id'=>'864424040318777',

'chest_id'=>2,

'type'=> 1,

'cls_pwd'=>'022428'

];

$result = get_http_content('https://public.zjuhe.cn/api/to_chest_add', 'POST',$date);

 

5)返回结果

 

变量名

必填

说明

code

状态码,200为正常,其他均为不正常(1024)

msg

成功或者失败的说明(例:设置成功/设置失败)

data

该接口返回具体的数值

示例:

{"code":200,"msg":"设置成功","data":{}}