Fetch Tunnel List
The API fetches the list of active and inactive tunnels across all connected APs, along with their detailed information. If AP is not connected, its tunnel status will not be included.
API Calls
/V6/networks/tunnels
JSON Table
Attribute | Data Type | Description |
---|---|---|
tunnels | application/json | |
tunnels/deviceName | String | |
tunnels/macaddress | String | |
tunnels/networkProfileId | long | |
tunnels/networkProfileName | String | |
tunnels/tunnelType | enum | Possible values are,
|
tunnels/remoteEndPoint | String | |
tunnels/endpointType | enum | Possible values are,
|
tunnels/ssids | String | |
tunnels/status | enum | Possible values are,
|
tunnels/upDownSince | long | |
previousLink | ||
nextLink | ||
totalCount |
Sample JSON
{ "tunnels": [ { "deviceName": "Mojo_F2:1F:3F", "macaddress": "00:11:74:F2:1F:3F", "networkProfileId": 1, "networkProfileName": "Nw_profiles", "tunnelType": "ETHERNET_OVER_GRE", "remoteEndPoint": "10.10.1.10", "endpointType": "PRIMARY", "ssids": "Test_SSID1, Test_SSID2", "status": "DOWN", "upDownSince": 1525870685000 }, { } ], "previousLink": null, "nextLink": "https://172.31.0.17/new/webservice/V6/networks/tunnels?startindex=10&pagesize=10", "totalCount": 10 }