- 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.5.0 to 1.6.0
What's Updated
[ camera ]
Returns sense settings for a given camera
GET /devices/{serial}/camera/sense
- Response property
audioDetection
value added
[ networks ]
Update a network
PUT /networks/{networkId}
- Optional property
notes
Added
Update a user configured with Meraki Authentication (currently, 802.1X RADIUS, splash guest, and client VPN users can be updated)
PUT /networks/{networkId}/merakiAuthUsers/{merakiAuthUserId}
- Summary changed from
Update a user configured with Meraki Authentication (currently, 802.1X RADIUS, splash guest, and client VPN users can be deleted)
toUpdate a user configured with Meraki Authentication (currently, 802.1X RADIUS, splash guest, and client VPN users can be updated)
Authorize a user configured with Meraki Authentication for a network (currently supports 802.1X, splash guest, and client VPN users, and currently, organizations have a 50,000 user cap)
POST /networks/{networkId}/merakiAuthUsers
- Summary changed from
Create a user configured with Meraki Authentication for a network (currently supports 802.1X, splash guest, and client VPN users, and currently, organizations have a 50,000 user cap)
toAuthorize a user configured with Meraki Authentication for a network (currently supports 802.1X, splash guest, and client VPN users, and currently, organizations have a 50,000 user cap)
Deauthorize a user
DELETE /networks/{networkId}/merakiAuthUsers/{merakiAuthUserId}
- Summary changed from
Delete a user configured with Meraki Authentication (currently, 802.1X RADIUS, splash guest, and client VPN users can be deleted)
toDeauthorize a user
[ switch ]
List the access policies for a switch network
GET /networks/{networkId}/switch/accessPolicies
- Response property
radiusGroupAttribute
value added
Return a specific access policy for a switch network
GET /networks/{networkId}/switch/accessPolicies/{accessPolicyNumber}
- Response property
radiusGroupAttribute
value added
Update an access policy for a switch network
PUT /networks/{networkId}/switch/accessPolicies/{accessPolicyNumber}
- Optional property
radiusGroupAttribute
Added
Create an access policy for a switch network
POST /networks/{networkId}/switch/accessPolicies
- Optional property
radiusGroupAttribute
Added
[ wireless ]
Update the attributes of an MR SSID
PUT /networks/{networkId}/wireless/ssids/{number}
- Optional property
splashGuestSponsorDomains
Added
- Optional property
ldap
Added
- Optional property
activeDirectory
Added
- Optional property
radiusTestingEnabled
Added
- Optional property
radiusCalledStationId
Added
- Optional property
radiusAuthenticationNasId
Added
- Optional property
radiusServerTimeout
Added
- Optional property
radiusServerAttemptsLimit
Added
- Optional property
radiusFallbackEnabled
Added
- Optional property
radiusAccountingInterimInterval
Added
- Optional property
adaptivePolicyGroupId
Added
Modify the splash page settings for the given SSID
PUT /networks/{networkId}/wireless/ssids/{number}/splash/settings
- Optional property
blockAllTrafficBeforeSignOn
Added
- Optional property
controllerDisconnectionBehavior
Added
- Optional property
allowSimultaneousLogins
Added
- Optional property
guestSponsorship
Added
- Optional property
billing
Added
PATH /networks/{networkId}/wireless/billing
- Path added
- New operation
Return the billing settings of this network
GET
/networks/{networkId}/wireless/billing
Code SnippetCopy{ "currency": "USD", "plans": [ { "id": "1", "price": "5", "bandwidthLimits": { "limitUp": 1000, "limitDown": 1000 }, "timeLimit": "1 hour" } ] }
- New operation
Update the billing settings
PUT
/networks/{networkId}/wireless/billing
Code SnippetCopy{ "currency": "USD", "plans": [ { "id": "1", "price": "5", "bandwidthLimits": { "limitUp": 1000, "limitDown": 1000 }, "timeLimit": "1 hour" } ] }
PATH /networks/{networkId}/wireless/ssids/{number}/deviceTypeGroupPolicies
- Path added
- New operation
List the device type group policies for the SSID
GET
/networks/{networkId}/wireless/ssids/{number}/deviceTypeGroupPolicies
Code SnippetCopy{ "enabled": true, "deviceTypePolicies": [ { "deviceType": "Android", "devicePolicy": "Allowed" }, { "deviceType": "iPhone", "devicePolicy": "Group policy", "groupPolicyId": 101 } ] }
- New operation
Update the device type group policies for the SSID
PUT
/networks/{networkId}/wireless/ssids/{number}/deviceTypeGroupPolicies
Code SnippetCopy{ "enabled": true, "deviceTypePolicies": [ { "deviceType": "Android", "devicePolicy": "Allowed" }, { "deviceType": "iPhone", "devicePolicy": "Group policy", "groupPolicyId": 101 } ] }
[ organizations ]
Create a network
POST /organizations/{organizationId}/networks
- Optional property
notes
Added