- What's Updated
- [ networks ]
- [ switch ]
- [ wireless ]
- [ organizations ]
- apiRequests
- brandingPolicies
- clients
- networks
- summary
- Return the top 10 appliances sorted by utilization over given time range.
- Return metrics for organization's top clients by data usage (in mb) over given time range, grouped by manufacturer.
- Return metrics for organization's top 10 devices sorted by data usage over given time range
- Return metrics for organization's top 10 switches by energy usage over given time range
- What's New
Version 1.20.0 to 1.21.0
Summary of Changes
1 - New
18 - Updated
534 - Total operations
337 - Total Paths
What's Updated
[ networks ]
service
Return a network
GET /networks/{networkId}
- Response property
isBoundToConfigTemplatevalue added
[ switch ]
accessPolicies
Create an access policy for a switch network
POST /networks/{networkId}/switch/accessPolicies
- Optional property
dot1xAdded
Update an access policy for a switch network
PUT /networks/{networkId}/switch/accessPolicies/{accessPolicyNumber}
- Optional property
dot1xAdded
[ wireless ]
ssids
List the VPN settings for the SSID.
GET /networks/{networkId}/wireless/ssids/{number}/vpn
- Response property
vlanIdvalue added
Update the VPN settings for the SSID
PUT /networks/{networkId}/wireless/ssids/{number}/vpn
- Optional property
vlanIdAdded
[ organizations ]
apiRequests
List the API requests made by an organization
GET /organizations/{organizationId}/apiRequests
- Optional param
userAgentadded
- Response property
propertiesvalue added
brandingPolicies
List the branding policies of an organization
GET /organizations/{organizationId}/brandingPolicies
- Response property
customLogovalue added
Return a branding policy
GET /organizations/{organizationId}/brandingPolicies/{brandingPolicyId}
- Response property
customLogovalue added
Add a new branding policy to an organization
POST /organizations/{organizationId}/brandingPolicies
- Optional property
customLogoAdded
Update a branding policy
PUT /organizations/{organizationId}/brandingPolicies/{brandingPolicyId}
- Optional property
customLogoAdded
clients
Return the client details in an organization
GET /organizations/{organizationId}/clients/search
- Response property
isBoundToConfigTemplatevalue added
networks
List the networks that the user has privileges on in an organization
GET /organizations/{organizationId}/networks
- Optional param
isBoundToConfigTemplateadded
- Response property
isBoundToConfigTemplatevalue added
summary
Return the top 10 appliances sorted by utilization over given time range.
GET /organizations/{organizationId}/summary/top/appliances/byUtilization
- Response property
propertiesvalue added
Return metrics for organization's top clients by data usage (in mb) over given time range, grouped by manufacturer.
GET /organizations/{organizationId}/summary/top/clients/manufacturers/byUsage
- Response property
propertiesvalue added
Return metrics for organization's top 10 devices sorted by data usage over given time range
GET /organizations/{organizationId}/summary/top/devices/byUsage
- Response property
propertiesvalue added
Return metrics for organization's top 10 switches by energy usage over given time range
GET /organizations/{organizationId}/summary/top/switches/byEnergyUsage
- Response property
propertiesvalue added
What's New
[ switch ]
ports
PATH /organizations/{organizationId}/switch/ports/bySwitch
- Path added
- New operation
List the switchports in an organization by switch
GET
/organizations/{organizationId}/switch/ports/bySwitch{ "name": "My switch", "serial": "Q234-ABCD-5678", "mac": "00:11:22:33:44:55", "network": { "name": "Main Office", "id": "N_24329156" }, "model": "MS", "ports": [ { "portId": "1", "name": "My switch port", "tags": [ "tag1", "tag2" ], "enabled": true, "poeEnabled": true, "type": "access", "vlan": 10, "voiceVlan": 20, "rstpEnabled": true, "stpGuard": "disabled", "linkNegotiation": "Auto negotiate", "accessPolicyType": "Sticky MAC allow list", "stickyMacAllowList": [ "34:56:fe:ce:8e:b0", "34:56:fe:ce:8e:b1" ], "stickyMacAllowListLimit": 5 } ] }