50-api-dev.rst 1.93 KB

系统运维接口

系统运维管理

系统运维设置

Verb: POST
Path: /api/v1/tx1/dev/config
Header: (authorization, {$auth_atoken}) (Content-Type, json)

Request Body:

{
  "dev_id":   "1111",   #设备id
  "over_dt":   "2018-12-04 08:00:00.00",  #过期时间
  "timed_restart":   0,   #定时重启标识(0为定时重启,1为定时重启
  "restart_time":   "08:00:00",   #定时重启时间
  "auth_file":   ,        #授权文件
  "back_data_file":,      #备份数据文件
  "note":"系统运维信息"      #备注
}

Response Body:

{
      "id":   "123456",   #主键
      "dev_id":   "1111",   #设备id
  "over_dt":   "2018-12-04 08:00:00.00",  #过期时间
  "timed_restart":   0,   #定时重启标识(0为定时重启,1为定时重启
  "restart_time":   "08:00:00",   #定时重启时间
  "auth_file": "http://127.0.0.1:20080/static/pics/xxx.tar"  ,        #授权文件
  "back_data_file":"http://127.0.0.1:20080/static/pics/xxx.tar",      #备份数据文件
  "note":"系统运维信息"      #备注
}

系统运维设置信息

Verb: GET
Path: /api/v1/tx1/dev/config
Header: (authorization, {$auth_atoken}) (Content-Type, json)

Response Body:

{
      "id":   "123456",   #主键
  "dev_id":   "1111",   #设备id
  "over_dt":   "2018-12-04 08:00:00.00",  #过期时间
  "timed_restart":   0,   #定时重启标识(0为定时重启,1为定时重启
  "restart_time":   "08:00:00",   #定时重启时间
  "auth_file": "http://127.0.0.1:20080/static/pics/xxx.tar"  ,        #授权文件
  "back_data_file":"http://127.0.0.1:20080/static/pics/xxx.tar" ,     #备份数据文件
  "note":"系统运维信息"      #备注
}