注册
  1. 异常提醒类接口
  2. 新增运维人员提醒配置

1)由平台提供,开发者配置异常提醒类型

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

3)请求参数

变量名

必填

类型

说明

code

String(128)

专属编码(例:Zj20190924125636,平台方提供开发者访问的标识码

APPID

String(128)

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

type

int(1)

1:添加 2删除

openid

String(128)

用户标识码


4)举例如下:

$ date =[

  code => ‘Zj20190924125636,

  APPID => ‘wx68727as88872t97,

  type => 1,

  openid =>xxxxxxxxxxxxxx

];

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

 

5)返回结果

变量名

必填

说明


code

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

msg

成功或者失败的说明(例:添加成功/添加失败)


data

该接口反回具体的数值


示例: {"code":200,"msg":"添加成功","data":{}}