- Release Notes
- API Changelog
- Overview
- Generally Available
- v1.57.0
- v1.56.0
- v1.55.0
- v1.54.0
- v1.53.0
- v1.52.0
- v1.51.1
- v1.50.0
- v1.49.0
- v1.48.0
- v1.47.0
- v1.46.0
- v1.45.0
- v1.44.0
- v1.43.0
- v1.42.0
- v1.41.0
- v1.40.0
- v1.39.0
- v1.38.0
- v1.37.0
- v1.36.0
- v1.35.0
- v1.34.0
- v1.33.0
- v1.32.0
- v1.31.0
- v1.30.0
- v1.29.0
- v1.28.0
- v1.27.0
- v1.26.0
- v1.25.0
- v1.24.0
- v1.23.0
- v1.22.0
- v1.21.0
- v1.20.0
- v1.19.0
- v1.18.0
- v1.17.0
- v1.16.0
- v1.15.0
- v1.14.0
- v1.13.0
- v1.12.0
- v1.11.0
- v1.10.0
- v1.8.0
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.0
- v0.11.0
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.0
- v0.2.0
- Beta
Version 1.7.0 to 1.8.0
What's Updated
[ devices ]
GET /devices/{serial}/lossAndLatencyHistory
- Response property
goodput
value added
- Response property
goodput
value added
- Response property
goodput
value added
- Summary changed from
Get the uplink loss percentage and latency in milliseconds for a wired network device.
toGet the uplink loss percentage and latency in milliseconds, and goodput in kilobits per second for a wired network device.
[ networks ]
GET /networks/{networkId}/firmwareUpgrades
- Response property
timezone
value added
- Response property
products
value added
- Summary changed from
Get current maintenance window for a network
toGet firmware upgrade information for a network
POST /networks/{networkId}/devices/claim
- Summary changed from
Claim devices into a network
toClaim devices into a network. (Note: for recently claimed devices, it may take a few minutes for API requsts against that device to succeed)
PUT /networks/{networkId}/firmwareUpgrades
- Optional property
timezone
Added
- Optional property
products
Added
- Summary changed from
Update current maintenance window for a network
toUpdate firmware upgrade information for a network
PATH /networks/{networkId}/firmwareUpgrades/rollbacks
- Path added
- New operation
Rollback a Firmware Upgrade For A Network
POST
/networks/{networkId}/firmwareUpgrades/rollbacks
Code SnippetCopy{ "product": "switch", "status": "pending", "upgradeBatchId": 23456, "time": "2020-10-21T02:00:00Z", "toVersion": { "id": 7857, "firmware": "switch-15-5-2", "shortName": "MS 25.5.2", "releaseType": "stable" }, "reasons": [ { "category": "performance", "comment": "Network was slower with the upgrade" }, { "category": "stability", "comment": "We saw some errors in the logs we didn't expect" } ] }
[ wireless ]
PUT /networks/{networkId}/wireless/ssids/{number}
- Optional property
baseDistinguishedName
Added
- Optional property
serverCaCertificate
Added
- Property
adaptivePolicyGroupId
Deleted
- Optional property
oauth
Added
- Optional property
localRadius
Added
- Optional property
adultContentFilteringEnabled
Added
- Optional property
dnsRewrite
Added
PATH /networks/{networkId}/wireless/ssids/{number}/bonjourForwarding
- Path added
- New operation
List the Bonjour forwarding setting and rules for the SSID
GET
/networks/{networkId}/wireless/ssids/{number}/bonjourForwarding
Code SnippetCopy{ "enabled": true, "rules": [ { "description": "A simple bonjour rule", "vlanId": "1", "services": [ "All Services" ] } ] }
- New operation
Update the bonjour forwarding setting and rules for the SSID
PUT
/networks/{networkId}/wireless/ssids/{number}/bonjourForwarding
Code SnippetCopy{ "enabled": true, "rules": [ { "description": "A simple bonjour rule", "vlanId": "1", "services": [ "All Services" ] } ] }
PATH /networks/{networkId}/wireless/ssids/{number}/vpn
- Path added
- New operation
List the VPN settings for the SSID.
GET
/networks/{networkId}/wireless/ssids/{number}/vpn
Code SnippetCopy{ "splitTunnel": { "enabled": true, "rules": [ { "protocol": "any", "destCidr": "1.1.1.1/32", "destPort": "any", "policy": "allow", "comment": "split tunnel rule 1" }, { "destCidr": "foo.com", "destPort": "any", "policy": "deny", "comment": "split tunnel rule 2" } ] } }
- New operation
Update the VPN settings for the SSID
PUT
/networks/{networkId}/wireless/ssids/{number}/vpn
Code SnippetCopy{ "splitTunnel": { "enabled": true, "rules": [ { "protocol": "any", "destCidr": "1.1.1.1/32", "destPort": "any", "policy": "allow", "comment": "split tunnel rule 1" }, { "destCidr": "foo.com", "destPort": "any", "policy": "deny", "comment": "split tunnel rule 2" } ] } }