- What's Updated
- What's New
- [ organizations ]
- inventory
- Claim a list of devices, licenses, and/or orders into an organization. When claiming by order, all devices and licenses in the order will be claimed; licenses will be added to the organization and devices will be placed in the organization's inventory. Use /organizations/{organizationId}/inventory/release to release devices from an organization.
- Release a list of claimed devices from an organization.
- inventory
- [ sensor ]
- [ organizations ]
- What's Changed
Version 1.18.0 to 1.19.0
Summary of Changes
4 - New
28 - Updated
526 - Total operations
332 - Total Paths
What's Updated
[ switch ]
ports
List the switch ports for a switch
GET /devices/{serial}/switch/ports
- Response property
adaptivePolicyGroupIdvalue added
- Response property
peerSgtCapablevalue added
Return a switch port
GET /devices/{serial}/switch/ports/{portId}
- Response property
adaptivePolicyGroupIdvalue added
- Response property
peerSgtCapablevalue added
Update a switch port
PUT /devices/{serial}/switch/ports/{portId}
- Optional property
adaptivePolicyGroupIdAdded
- Optional property
peerSgtCapableAdded
configTemplates
Return all the ports of a switch profile
GET /organizations/{organizationId}/configTemplates/{configTemplateId}/switch/profiles/{profileId}/ports
- Response property
adaptivePolicyGroupIdvalue added
- Response property
peerSgtCapablevalue added
Return a switch profile port
GET /organizations/{organizationId}/configTemplates/{configTemplateId}/switch/profiles/{profileId}/ports/{portId}
- Response property
adaptivePolicyGroupIdvalue added
- Response property
peerSgtCapablevalue added
[ camera ]
qualityRetentionProfiles
Update an existing quality retention profile for this network.
PUT /networks/{networkId}/camera/qualityRetentionProfiles/{qualityRetentionProfileId}
- Optional property
MV52Added
Creates new quality retention profile for this network.
POST /networks/{networkId}/camera/qualityRetentionProfiles
- Optional property
MV52Added
[ networks ]
settings
Return the settings for a network
GET /networks/{networkId}/settings
- Response property
localStatusPagevalue added
[ wireless ]
rfProfiles
Updates specified RF profile for this network
PUT /networks/{networkId}/wireless/rfProfiles/{rfProfileId}
- Optional property
perSsidSettingsAdded
Creates new RF profile for this network
POST /networks/{networkId}/wireless/rfProfiles
- Optional property
perSsidSettingsAdded
ssids
Update the attributes of an MR SSID
PUT /networks/{networkId}/wireless/ssids/{number}
- Optional property
secondaryConcentratorNetworkIdAdded
- Optional property
disassociateClientsOnVpnFailoverAdded
- Optional property
speedBurstAdded
[ organizations ]
adaptivePolicy
List adaptive policy groups in a organization
GET /organizations/{organizationId}/adaptivePolicy/groups
- Response property
isDefaultGroupvalue added
- Response property
requiredIpMappingsvalue added
Returns an adaptive policy group
GET /organizations/{organizationId}/adaptivePolicy/groups/{groupId}
- Response property
isDefaultGroupvalue added
- Response property
requiredIpMappingsvalue added
clients
Return data usage (in megabits per second) over time for all clients in the given organization within a given time range.
GET /organizations/{organizationId}/clients/bandwidthUsageHistory
- Response property
propertiesvalue added
loginSecurity
Returns the login security settings for an organization.
GET /organizations/{organizationId}/loginSecurity
- Response property
propertiesvalue added
- Response property
apiAuthenticationvalue added
Update the login security settings for an organization
PUT /organizations/{organizationId}/loginSecurity
- Optional property
apiAuthenticationAdded
service
List the organizations that the user has privileges on
GET /organizations
- Optional property
cloudAdded
Return an organization
GET /organizations/{organizationId}
- Optional property
cloudAdded
What's New
[ organizations ]
inventory
PATH /organizations/{organizationId}/inventory/claim
- Path added
- New operation
Claim a list of devices, licenses, and/or orders into an organization. When claiming by order, all devices and licenses in the order will be claimed; licenses will be added to the organization and devices will be placed in the organization's inventory. Use /organizations/{organizationId}/inventory/release to release devices from an organization.
POST
/organizations/{organizationId}/inventory/claim{ "orders": [ "4CXXXXXXX" ], "serials": [ "Q234-ABCD-5678" ], "licenses": [ { "key": "Z2XXXXXXXXXX", "mode": "addDevices" } ] }
PATH /organizations/{organizationId}/inventory/release
- Path added
- New operation
Release a list of claimed devices from an organization.
POST
/organizations/{organizationId}/inventory/release{ "serials": [ "Q234-ABCD-5678" ] }
[ sensor ]
readings
PATH /organizations/{organizationId}/sensor/readings/history
- Path added
- New operation
Return all reported readings from sensors in a given timespan, sorted by timestamp
GET
/organizations/{organizationId}/sensor/readings/history[ { "ts": "2021-10-18T23:54:48Z", "serial": "Q234-ABCD-5678", "network": { "id": "N_24329156", "name": "Main Office" }, "metric": "temperature", "temperature": { "fahrenheit": 77.81, "celsius": 25.45 } } ]
PATH /organizations/{organizationId}/sensor/readings/latest
- Path added
- New operation
Return the latest available reading for each metric from each sensor, sorted by sensor serial
GET
/organizations/{organizationId}/sensor/readings/latest[ { "serial": "Q234-ABCD-5678", "network": { "id": "N_24329156", "name": "Main Office" }, "readings": [ { "ts": "2021-10-18T23:54:48Z", "metric": "temperature", "temperature": { "fahrenheit": 77.81, "celsius": 25.45 } } ] } ]