1)由平台提供,开发者可修改某设备的信息
2)URL地址:https://public.zjuhe.cn/api/terminal_modify
3)请求参数
变量名 | 必填 | 类型 | 说明 |
code | 是 | String(128) | 专属编码(例:Zj20190924125636),平台方提供开发者访问的标识码 |
APPID | 是 | String(128) | 公众号ID(例:wx68727as88872t97),微信公众号专属标识 |
terminal_id | 是 | String(15) | 设备ID(例:869270048847410) |
terminal_name | 否 | String(128) | 设备名称(例:富力测试) |
region_id | 否 | Int(10) | 场地ID(例:87) |
unit_id | 否 | Int(10) | 机型id(例:20072) |
4)举例如下:
$date=[
'code' =>'Zj20190924125636',
'APPID' =>'wx68727as88872t97',
'termina_id' =>'869270048847410',
'terminal_name' =>'富力测试',
'region_id' =>87,
'unit_id' =>20072
];
$result = get_http_content('https://public.zjuhe.cn/api/Shipment', 'POST',$date);
5)json返回结果
{"code":200,"msg":"新增成功","data":{}}