Version 1.4.0 to 1.5.0

What's Updated

[ wireless ]

Update the attributes of an MR SSID

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

- Property radiusTestingEnabled Deleted


[ appliance ]

GET /organizations/{organizationId}/appliance/uplink/statuses

- Optional param networkIds added

- Optional param serials added

- Optional param iccids added

- Response property iccid value added

- Response property model value added


[ organizations ]

PATH /organizations/{organizationId}/uplinks/statuses

- Path added

- New operation

GET /organizations/{organizationId}/uplinks/statuses

[
    {
        "networkId": "N_24329156",
        "serial": "Q234-ABCD-5678",
        "model": "MX68C",
        "lastReportedAt": "2018-02-11T00:00:00Z",
        "uplinks": [
            {
                "interface": "wan1",
                "status": "active",
                "ip": "1.2.3.4",
                "gateway": "1.2.3.5",
                "publicIp": "123.123.123.1",
                "primaryDns": "8.8.8.8",
                "secondaryDns": "8.8.4.4",
                "ipAssignedBy": "static"
            },
            {
                "interface": "cellular",
                "status": "ready",
                "ip": "1.2.3.4",
                "provider": "at&t",
                "publicIp": "123.123.123.1",
                "model": "integrated",
                "signalStat": {
                    "rsrp": "-120",
                    "rsrq": "-13"
                },
                "connectionType": "4g",
                "apn": "internet",
                "iccid": "123456789"
            }
        ]
    },
    {
        "networkId": "N_24329156",
        "serial": "Q234-ABCD-5678",
        "model": "MG21",
        "lastReportedAt": "2018-02-11T00:00:00Z",
        "uplinks": [
            {
                "interface": "cellular",
                "status": "ready",
                "ip": "1.2.3.4",
                "provider": "at&t",
                "publicIp": "123.123.123.1",
                "model": "integrated",
                "signalStat": {
                    "rsrp": "-120",
                    "rsrq": "-13"
                },
                "connectionType": "4g",
                "apn": "internet",
                "iccid": "123456789"
            }
        ]
    }
]


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

GET /organizations/{organizationId}/webhooks/alertTypes

- Response property alertTypeId value added

- Response property version value added

- Response property sharedSecret value added

- Response property sentAt value added

- Response property alertId value added

- Response property alertLevel value added

- Response property occurredAt value added

- Response property alertData value added


[ sm ]

PATH /networks/{networkId}/sm/userAccessDevices

- Path added

- New operation

List User Access Devices and its Trusted Access Connections

GET /networks/{networkId}/sm/userAccessDevices

[
    {
        "id": "1284392014819",
        "name": "My Personal Phone",
        "systemType": "ios",
        "mac": "00:11:22:33:44:55",
        "username": "milesmeraki",
        "email": "miles@meraki.com",
        "tags": [
            "tag1",
            "tag2"
        ],
        "trustedAccessConnections": [
            {
                "trustedAccessConfigId": "1234",
                "downloadedAt": "2018-02-11T00:00:00Z",
                "scepCompletedAt": "2018-05-12T00:00:00Z",
                "lastConnectedAt": "2018-05-12T00:00:00Z"
            }
        ]
    }
]


PATH /networks/{networkId}/sm/userAccessDevices/{userAccessDeviceId}

- Path added

- New operation

Delete a User Access Device

DELETE /networks/{networkId}/sm/userAccessDevices/{userAccessDeviceId}



[ cellularGateway ]

PATH /organizations/{organizationId}/cellularGateway/uplink/statuses

- Path added

- New operation

GET /organizations/{organizationId}/cellularGateway/uplink/statuses

[
    {
        "networkId": "N_24329156",
        "serial": "Q234-ABCD-5678",
        "model": "MG21",
        "lastReportedAt": "2018-02-11T00:00:00Z",
        "uplinks": [
            {
                "interface": "cellular",
                "status": "ready",
                "ip": "1.2.3.4",
                "provider": "at&t",
                "publicIp": "123.123.123.1",
                "model": "integrated",
                "signalStat": {
                    "rsrp": "-120",
                    "rsrq": "-13"
                },
                "connectionType": "4g",
                "apn": "internet",
                "iccid": "123456789"
            }
        ]
    }
]