I tried @CiscoUser 's solution and could not make it work. However, I managed to find the documentation of that functionality under the following API: https://developer.cisco.com/meraki/api/#!provision-network-clients under schema definition. You should set Per connection policy and list the SSIDs you would like to change the device's policy for them Here is an example for a request's body that would block device for specific SSIDs: { "mac": "aa:aa:aa:aa:aa:aa", "devicePolicy": "Per connection", "timespan": 2592000, "policiesBySsid": { "9": { "devicePolicy": "Blocked" } } } Sending this body in a post request to /networks/{networkId}/clients/provision will block any device with MAC aa:aa:aa:aa:aa:aa from connecting to SSID on index 9(you can get that using GET /networks/{networkId}/ssids)
... View more