Version 1.12.0 to 1.13.0

What's Updated

[ appliance ]

Return single LAN configuration

GET /networks/{networkId}/appliance/singleLan

- Response property fixedIpAssignments value added

- Response property reservedIpRanges value added

- Response property dnsNameservers value added

- Response property dnsCustomNameservers value added

- Response property dhcpHandling value added

- Response property dhcpLeaseTime value added

- Response property dhcpBootOptionsEnabled value added

- Response property dhcpOptions value added


List the static routes for an MX or teleworker network

GET /networks/{networkId}/appliance/staticRoutes

- Response property ipVersion value added


Return a static route for an MX or teleworker network

GET /networks/{networkId}/appliance/staticRoutes/{staticRouteId}

- Response property ipVersion value added


[ networks ]

Return the settings for a network

GET /networks/{networkId}/settings

- Response property namedVlans value added


Get firmware upgrade information for a network

GET /networks/{networkId}/firmwareUpgrades

- Response property participateInNextBetaRelease value added


Update firmware upgrade information for a network

PUT /networks/{networkId}/firmwareUpgrades

- Optional property participateInNextBetaRelease Added


List the MQTT brokers for this network

GET /networks/{networkId}/mqttBrokers

- Response property security value added

- Response property authentication value added


Return an MQTT broker

GET /networks/{networkId}/mqttBrokers/{mqttBrokerId}

- Response property security value added

- Response property authentication value added


Update an MQTT broker

PUT /networks/{networkId}/mqttBrokers/{mqttBrokerId}

- Optional property security Added

- Optional property authentication Added


Add an MQTT broker

POST /networks/{networkId}/mqttBrokers

- Optional property security Added

- Optional property authentication Added


PATH /networks/{networkId}/health/alerts

- Path added

- New operation

Return all global alerts on this network

GET /networks/{networkId}/health/alerts

{
    "category": "Connectivity issues",
    "type": "Poor connectivity to the Meraki cloud",
    "severity": "warning",
    "scope": {
        "devices": [
            {
                "url": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
                "name": "My AP",
                "productType": "switch",
                "serial": "Q234-ABCD-5678",
                "mac": "00:11:22:33:44:55",
                "lldp": {
                    "portId": "1"
                },
                "clients": [
                    {
                        "mac": "22:33:44:55:66:77"
                    }
                ]
            }
        ],
        "applications": [
            {
                "url": "https://n1.meraki.com//n//manage/nodes/list",
                "name": "Application on application server"
            }
        ]
    }
}