Version 1.3.0 to 1.4.0

What's Updated

[ wireless ]

List the MR SSIDs in a network

GET /networks/{networkId}/wireless/ssids

- Response property ldapServers value added

- Response property ldapCredentials value added

- Response property activeDirectoryServers value added

- Response property activeDirectoryCredentials value added

- Response property splashGuestSponsorDomains value added


Return a single MR SSID

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

- Response property ldapServers value added

- Response property ldapCredentials value added

- Response property activeDirectoryServers value added

- Response property activeDirectoryCredentials value added

- Response property splashGuestSponsorDomains value added


Display the splash page settings for the given SSID

GET /networks/{networkId}/wireless/ssids/{number}/splash/settings

- Response property guestSponsorship value added


Update the attributes of an MR SSID

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

- Optional property dot11w Added

- Optional property dot11r Added

- Optional property radiusTestingEnabled Added


[ networks ]

PATH /networks/{networkID}/clients/applicationUsage

- Path added

- New operation

Return the application usage data for clients. Usage data is in kilobytes. Clients can be identified by client keys or either the MACs or IPs depending on whether the network uses Track-by-IP.

GET /networks/{networkID}/clients/applicationUsage

[
    {
        "clientId": "k74272e",
        "clientIp": "1.2.3.4",
        "clientMac": "00:11:22:33:44:55",
        "applicationUsage": [
            {
                "application": "Google",
                "recv": 383,
                "sent": 56
            }
        ]
    }
]


PATH /networks/{networkID}/clients/usageHistories

- Path added

- New operation

Return the usage histories for clients. Usage data is in kilobytes. Clients can be identified by client keys or either the MACs or IPs depending on whether the network uses Track-by-IP.

GET /networks/{networkID}/clients/usageHistories

[
    {
        "clientId": "k74272e",
        "clientIp": "1.2.3.4",
        "clientMac": "00:11:22:33:44:55",
        "usageHistory": [
            {
                "ts": "2018-02-11T00:00:00.090210Z",
                "recv": 383,
                "sent": 56
            }
        ]
    }
]


[ organizations ]

PATH /organizations/{organizationId}/webhooks/alertTypes

- Path added

- New operation

Return a list of alert types to be used with managing webhook alerts

GET /organizations/{organizationId}/webhooks/alertTypes

[
    {
        "alertType": "stopped_reporting",
        "alertName": "APs went down",
        "example": {
            "version": "0.1",
            "sharedSecret": "secret",
            "sentAt": "2020-07-11T00:03:12.331789Z",
            "alertId": "0000000000000000",
            "alertType": "APs went down",
            "occurredAt": "2018-02-11T00:00:00.123450Z",
            "alertData": {}
        },
        "organizationId": "2930418",
        "organizationName": "My organization",
        "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
        "deviceSerial": "Q234-ABCD-5678",
        "deviceMac": "00:11:22:33:44:55",
        "deviceName": "My AP",
        "deviceUrl": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
        "deviceTags": [
            "tag1",
            "tag2"
        ],
        "deviceModel": "MR34",
        "networkId": "N_24329156",
        "networkName": "Main Office",
        "networkUrl": "https://n1.meraki.com//n//manage/nodes/list"
    }
]