Hi there,
I have been browsing through the forum and saw one thread for this item, but not using the same code examples. i would like to change the MX VLAN ports using the Python meraki API. This is different than the solution posted here where they use the request/REST function and not the api. I get a 200 Ok but the changing have not been done. I am a bit clueless now how to parse all this..
I want to update port 3 with a VLAN setting
A piece of code :
pay_load = "{'enabled': True, 'type': 'access', 'dropUntaggedTraffic': False, 'vlan': 400, 'accessPolicy': 'open'}"
pay_load = json.dumps(pay_load)
result = dashboard.mx_vlan_ports.updateNetworkAppliancePort(def_network,"3",param=pay_load)
meraki: INFO > MX VLAN ports, updateNetworkAppliancePort - 200 OK
But unfortunately no change in port
I think the problem is in parsing the arguments, but i am not sure ...
Any ideas ?