JSON_UserCfg

UserCfg message in JSON format.

{
  "UserCfg":{
    "id": , 
/*integer type, user No., it is optional for POST method, but it is required for other methods*/
    "userName":"", 
/*required, string type, user name*/
    "password":"", 
/*required, string type, user password*/
    "keypadPassword":"", 
/*optional, string type, keyboard password, write-only*/
    "messageSendEnabled":, 
/*optional, boolean type, whether to enable message notification, "true, false"*/
    "bypassEnabled":, 
/*optional, boolean type, whether to enable bypass or bypass recovery*/
    "duressEnabled":, 
/*optional, boolean type, whether to enable duress alarm*/
    "MacList":[{
      "Mac":"" 
/*optional, MAC address bound by the user*/
    }],
    "IpAddrList":[{
/*optional*/
      "IpAddr":{
        "ipVersion":"", 
/*optional, string type, IP address version information: "v4"-IPv4, "v6"-IPv6*/
        "ipAddress":"" 
/*optional, IPV4 or IPV6 address*/
      }
    }] 
  }
}