Hi there ! # Save changes postnewaddr = meraki.updatedevice(apikey,deviceinfo['networkId'],deviceinfo['serial'],deviceinfo['address']) I would do : postnewaddr = meraki.updatedevice(apikeu,deviceinfo['networkId'],deviceinfo['serial'], address = deviceinfo['address']) The reference in Meraki.py is : def updatedevice(apikey, networkid, serial, name=None, tags=None, lat=None, lng=None, address=None, move=None, suppressprint=False): So the first variable is name, that is the reason why It changed the name instead of address. ( had the same issue yesterday haha ) It should be working now. Try it 🙂
... View more