Please could the Device/Uplink API response be modified to include the subnet info? The current response does not include this. SAMPLE RESPONSE Successful HTTP Status: 200 [
{
"interface" : "WAN 1" ,
"status" : "Active" ,
"ip" : "1.2.3.4" ,
"gateway" : "1.2.3.5" ,
"publicIp" : "123.123.123.1" ,
"dns" : "8.8.8.8, 8.8.4.4" ,
"usingStaticIp" : false
}
] Suggested RESPONSE Successful HTTP Status: 200 [
{
"interface" : "WAN 1" ,
"status" : "Active" ,
"ip" : "41.161.152.146" , "mask" : "255.255.255.240" , "gateway" : "41.161.152.145" , "publicIp" : "41.161.152.146 " , "dns" : "8.8.8.8, 8.8.4.4" , "usingStaticIp" : false } ]
... View more