Version 1.0.0 to 1.1.0

What's Updated

[ switch ]

Update a switch port

PUT /devices/{serial}/switch/ports/{portId}

- Optional property flexibleStackingEnabled Added


Update a switch profile port

PUT /organizations/{organizationId}/configTemplates/{configTemplateId}/switch/profiles/{profileId}/ports/{portId}

- Optional property flexibleStackingEnabled Added


[ wireless ]

Update the radio settings of a device

PUT /devices/{serial}/wireless/radio/settings

- Optional property twoFourGhzSettings Added

- Optional property fiveGhzSettings Added


Update the attributes of an MR SSID

PUT /networks/{networkId}/wireless/ssids/{number}

- Optional property mandatoryDhcpEnabled Added


Return the radio settings of a device

GET /devices/{serial}/wireless/radio/settings

- Response property twoFourGhzSettings value added

- Response property fiveGhzSettings value added


[ appliance ]

Update the traffic shaping settings rules for an MX network

PUT /networks/{networkId}/appliance/trafficShaping/rules

- Summary changed from Update the traffic shaping settings for an MX network to Update the traffic shaping settings rules for an MX network


Display the traffic shaping settings rules for an MX network

GET /networks/{networkId}/appliance/trafficShaping/rules

- Summary changed from Display the traffic shaping settings for an MX network to Display the traffic shaping settings rules for an MX network


PATH /networks/{networkId}/appliance/trafficShaping

- Path added

- New operation

Display the traffic shaping settings for an MX network

GET /networks/{networkId}/appliance/trafficShaping

{
    "globalBandwidthLimits": {
        "limitUp": 2048,
        "limitDown": 5120
    }
}

- New operation

Update the traffic shaping settings for an MX network

PUT /networks/{networkId}/appliance/trafficShaping

{
    "globalBandwidthLimits": {
        "limitUp": 2048,
        "limitDown": 5120
    }
}


[ networks ]

Create a user configured with Meraki Authentication for a network (currently supports 802.1X and Splash Guest 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 only 802.1X RADIUS users can be created, and currently, organizations have a 50,000 user cap) to Create a user configured with Meraki Authentication for a network (currently supports 802.1X and Splash Guest users, and currently, organizations have a 50,000 user cap)


[ organizations ]

Return the device inventory for an organization

GET /organizations/{organizationId}/inventoryDevices

- Optional param search added


PATH /organizations/{organizationId}/inventoryDevices/{serial}

- Path added

- New operation

Return a single device from the inventory of an organization

GET /organizations/{organizationId}/inventoryDevices/{serial}

{
    "mac": "00:11:22:33:44:55",
    "serial": "Q234-ABCD-5678",
    "name": "My AP",
    "model": "MR34",
    "networkId": "N_24329156",
    "orderNumber": "4C1234567",
    "claimedAt": "2018-02-11T00:00:00.090210Z",
    "licenseExpirationDate": "2020-05-02T10:52:44.012345Z"
}