*************************** * Just discard my reply on this... * I guess i was not reading the problem properly 😉 *************************** In Python, Just what the other say Copy the SSID, change the name... Write it back to the proper port. def Change_SSID ( def_network , def_Old_SSID , def_New_SSID 😞 ####################################################### # Load all the SSID of the network ####################################################### my_ssids = dashboard.ssids.getNetworkSsids(def_network) my_tmp_name = def_Old_SSID.upper() my_disabled = "" ############################################################################### for my_ssid in my_ssids: my_ssid_name = my_ssid[ 'name' ] my_ssid_name = my_ssid_name.upper() if my_ssid_name == my_tmp_name: if my_ssid[ 'enabled' ] == False : my_disabled = "disabled " print (my_ssid) my_ssid[ 'name' ] = def_New_SSID try : response = dashboard.ssids.updateNetworkSsid(def_network,**my_ssid) print ( "Name of " +my_disabled+ "SSID " +def_Old_SSID+ " has been changed to " +def_New_SSID) except meraki.exceptions.APIError as err: print ( str (err)) network_id = "L_582653201791061776" Change_SSID(network_id, "VON Client" , "VON Edje" ) Result : Name of SSID VON Client has been changed to VON Edje
... View more