- 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 0.5.0 to 0.6.0
Changes
SAML roles
Create a SAML role
POST
/organizations/{organizationId}/samlRoles
Response
200
Deleted
Response property
201
value added:Code SnippetCopy{ 201: {"description":"Successful operation","schema":{"type":"object","x-is-dynamic":true},"examples":{"application/json":{"id":"TEdJIEN1c3RvbWVy","role":"myrole","orgAccess":"none","networks":[{"id":"N_1234","access":"full"}],"tags":[{"tag":"west","access":"read-only"}]}}} }
Switch ports
List the switch ports for a switch
GET
/devices/{serial}/switchPorts
Response property
macWhitelist
value added:Code SnippetCopy{ macWhitelist: ["34:56:fe:ce:8e:a0","34:56:fe:ce:8e:a1"] }
Response property
stormControlEnabled
value added:Code SnippetCopy{ stormControlEnabled: true }
Return a switch port
GET
/devices/{serial}/switchPorts/{number}
Response property
macWhitelist
value added:Code SnippetCopy{ macWhitelist: ["34:56:fe:ce:8e:a0","34:56:fe:ce:8e:a1"] }
Response property
stormControlEnabled
value added:Code SnippetCopy{ stormControlEnabled: true }
Update a switch port
PUT
/devices/{serial}/switchPorts/{number}
Optional property
stormControlEnabled
Added
Networks
Combine multiple networks into a single network
POST
/organizations/{organizationId}/networks/combine
Optional property
enrollmentString
Added
Return a network
GET
/networks/{networkId}
Response property
enrollmentString
value added:Code SnippetCopy{ enrollmentString: "long-island-office" }
List the networks in an organization
GET
/organizations/{organizationId}/networks
Response property
enrollmentString
value added:Code SnippetCopy{ enrollmentString: "long-island-office" }
Update a network
PUT
/networks/{networkId}
Optional property
enrollmentString
Added
SM
Get a list of softwares associated with a user
GET
/networks/{networkId}/sm/user/{userId}/softwares
Response property
appId
value added:Code SnippetCopy{ appId: "1234" }
Get a list of softwares associated with a device
GET
/networks/{networkId}/sm/{deviceId}/softwares
Response property
appId
value added:Code SnippetCopy{ appId: "1234" }
API usage
List the API requests made by an organization
GET
/organizations/{organizationId}/apiRequests
Optional param
sourceIp
added
Response property
sourceIp
value added:Code SnippetCopy{ sourceIp: "123.123.123.1" }
Organizations
Return the inventory for an organization
GET
/organizations/{organizationId}/inventory
Optional param
includeLicenseInfo
added
Return the third party VPN peers for an organization
GET
/organizations/{organizationId}/thirdPartyVPNPeers
Response property
remoteId
value added:Code SnippetCopy{ remoteId: "miles@meraki.com" }
Update the third party VPN peers for an organization
PUT
/organizations/{organizationId}/thirdPartyVPNPeers
Optional property
remoteId
Added
Switch ACLs
PATH
/networks/{networkId}/switch/accessControlLists
Path added
GET
getNetworkSwitchAccessControlLists Return the access control lists for a MS network
Code SnippetCopy{ "rules": [ { "comment": "Deny SSH", "policy": "deny", "ipVersion": "ipv4", "protocol": "tcp", "srcCidr": "10.1.10.0/24", "srcPort": "any", "dstCidr": "172.16.30/24", "dstPort": 22, "vlan": 10 }, { "comment": "Default rule", "policy": "allow", "ipVersion": "any", "protocol": "any", "srcCidr": "any", "srcPort": "any", "dstCidr": "any", "dstPort": "any", "vlan": "any" } ] }
PUT
updateNetworkSwitchAccessControlLists Update the access control lists for a MS network
Code SnippetCopy{ "rules": [ { "comment": "Deny SSH", "policy": "deny", "ipVersion": "ipv4", "protocol": "tcp", "srcCidr": "10.1.10.0/24", "srcPort": "any", "dstCidr": "172.16.30/24", "dstPort": 22, "vlan": 10 }, { "comment": "Default rule", "policy": "allow", "ipVersion": "any", "protocol": "any", "srcCidr": "any", "srcPort": "any", "dstCidr": "any", "dstPort": "any", "vlan": "any" } ] }
Switch settings
PATH
/networks/{networkId}/switch/settings/dhcpServerPolicy
Path added
GET
getNetworkSwitchSettingsDhcpServerPolicy Return the DHCP server policy
Code SnippetCopy{ "defaultPolicy": "block", "allowedServers": [ "00:50:56:00:00:01", "00:50:56:00:00:02" ] }
PUT
updateNetworkSwitchSettingsDhcpServerPolicy Update the DHCP server policy
Code SnippetCopy{ "defaultPolicy": "block", "allowedServers": [ "00:50:56:00:00:01", "00:50:56:00:00:02" ] }
PATH
/networks/{networkId}/switch/settings/dscpToCosMappings
Path added
GET
getNetworkSwitchSettingsDscpToCosMappings Return the DSCP to CoS mappings
Code SnippetCopy{ "mappings": [ { "dscp": 1, "cos": 1, "title": "Video" } ] }
PUT
updateNetworkSwitchSettingsDscpToCosMappings Update the DSCP to CoS mappings
Code SnippetCopy{ "mappings": [ { "dscp": 1, "cos": 1, "title": "Video" } ] }
Licenses
PATH
/organizations/{organizationId}/licenses
Path added
GET
getOrganizationLicenses List the licenses for an organization
Code SnippetCopy[ { "id": "1234", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "deviceSerial": "Q234-ABCD-5678", "networkId": "N_24329156", "state": "active", "seatCount": null, "totalDurationInDays": 425, "durationInDays": 365, "permanentlyQueuedLicenses": [ { "id": "5678", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "durationInDays": 60 } ], "claimDate": "2019-08-29T12:40:10Z", "activationDate": "2019-09-01T15:01:46Z", "expirationDate": "2020-10-30T15:01:46Z" } ]
PATH
/organizations/{organizationId}/licenses/assignSeats
Path added
POST
assignOrganizationLicensesSeats Assign SM seats to a network. This will increase the managed SM device limit of the network
Code SnippetCopy{ "resultingLicenses": [ { "id": "1234", "licenseType": "SME", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "deviceSerial": null, "networkId": "N_24329156", "state": "active", "seatCount": 25, "totalDurationInDays": 365, "durationInDays": 365, "permanentlyQueuedLicenses": [], "claimDate": "2019-08-29T12:40:10Z", "activationDate": "2019-09-01T15:01:46Z", "expirationDate": "2020-08-31T15:01:46Z" } ] }
PATH
/organizations/{organizationId}/licenses/move
Path added
POST
moveOrganizationLicenses Move licenses to another organization. This will also move any devices that the licenses are assigned to
Code SnippetCopy{ "destOrganizationId": "2930418", "licenseIds": [ "123", "456" ] }
PATH
/organizations/{organizationId}/licenses/moveSeats
Path added
POST
moveOrganizationLicensesSeats Move SM seats to another organization
Code SnippetCopy{ "destOrganizationId": "2930418", "licenseId": "1234", "seatCount": 20 }
PATH
/organizations/{organizationId}/licenses/renewSeats
Path added
POST
renewOrganizationLicensesSeats Renew SM seats of a license. This will extend the license expiration date of managed SM devices covered by this license
Code SnippetCopy{ "resultingLicenses": [ { "id": "1234", "licenseType": "SME", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "deviceSerial": null, "networkId": "N_24329156", "state": "active", "seatCount": 25, "totalDurationInDays": 365, "durationInDays": 365, "permanentlyQueuedLicenses": [], "claimDate": "2019-08-29T12:40:10Z", "activationDate": "2019-09-01T15:01:46Z", "expirationDate": "2020-08-31T15:01:46Z" } ] }
PATH
/organizations/{organizationId}/licenses/{licenseId}
Path added
GET
getOrganizationLicense Display a license
Code SnippetCopy{ "id": "1234", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "deviceSerial": "Q234-ABCD-5678", "networkId": "N_24329156", "state": "active", "seatCount": null, "totalDurationInDays": 425, "durationInDays": 365, "permanentlyQueuedLicenses": [ { "id": "5678", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "durationInDays": 60 } ], "claimDate": "2019-08-29T12:40:10Z", "activationDate": "2019-09-01T15:01:46Z", "expirationDate": "2020-10-30T15:01:46Z" }
PUT
updateOrganizationLicense Update a license
Code SnippetCopy{ "id": "1234", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "deviceSerial": "Q234-ABCD-5678", "networkId": "N_24329156", "state": "active", "seatCount": null, "totalDurationInDays": 425, "durationInDays": 365, "permanentlyQueuedLicenses": [ { "id": "5678", "licenseType": "MX64-ENT", "licenseKey": "Z21234567890", "orderNumber": "4C1234567", "durationInDays": 60 } ], "claimDate": "2019-08-29T12:40:10Z", "activationDate": "2019-09-01T15:01:46Z", "expirationDate": "2020-10-30T15:01:46Z" }
Renamed
PATH
/organizations/{organizationId}/samlRoles/{id}
Path
/organizations/{organizationId}/samlRoles/{id}
renamed to/organizations/{organizationId}/samlRoles/{samlRoleId}