I worded this question poorly. What I was really asking for is if there was an API to toggle on GCMP-256. Because it isn't mentioned in the API documentation for the the wireless SSID settings and the payload required isn't part of the payload example body.    https://developer.cisco.com/meraki/api-v1/update-network-wireless-ssid/    I did however manage to toggle WPA3 Enterprise, 802.11w and GCMP-256 on programmatically at the same time by sniffing the dashboard API PUT requests via devtools after toggling it on in the dashboard.    This enabled me to write a script to set WPA3 enabled, 802.11w enabled, GCMP-256 toggled on.    payload:  wpa3Configs : {cipherGcmp256: true, wpa3Akm8: true, wpa3Akm24: false} 
						
					
					... View more