Hi Using Postman is one way of doing it, however If you use Python and the Meraki API call, you can browse through that network, obtain all serials of the devices and the change the objects you want.... Done that several times already with my networks here. here is an example of the things we use here. (identing is gone with cut and paste) def Add_Network_Device(def_network,def_serial,def_site_code): # # First check if device is already in network # device_there = 0 my_network_devices = dashboard.devices.getNetworkDevices(def_network) for my_network_device in my_network_devices: if def_serial == my_network_device['serial']: print ("device ",my_network_device["model"],"with serial",def_serial,"already added") device_there = 1 if device_there == 0: print ('Adding ',def_serial,' to netowrk id : ',def_network) try: response = dashboard.devices.claimNetworkDevices(def_network,serial=def_serial ) print (response) except: print ("Failed to add device") quit() my_device = dashboard.devices.getNetworkDevice(def_network,def_serial) model_type = str(my_device['model']) if model_type[:2] == "MX": def_site_code += "-FW1" elif model_type[:2] == "MS": def_site_code += "-SW01" elif model_type[:2] == "MR": def_site_code += "-AP01" param = {} param['name'] = def_site_code try: response = dashboard.devices.updateNetworkDevice(def_network,def_serial,**param) print (respons) except: print ("Cannot update ") print ("Name is : ",def_site_code)
... View more