First, thank you for the reply. Here are some more details. Yes I would like to edit the default outdoor RFProfile minBitrate. I would settle for being able to edit the minBitrate on a RFProfile of my choice. Here is what I am seeing: So here I have created a Outdoor custom RFProfile and did not make it default. For right now I just want to change the min bitrate for the number 0 SSID. I am using the following python calls: profiles = dashboard.wireless.getNetworkWirelessRfProfiles( network_id, includeTemplateProfiles=False) for profile in profiles: if (profile["name"] == "Custom Outdoor Profile"): input_minBitrate = {"minBitrateType": 'ssid', "perSsidSettings":{'0':{"minBitrate":9} } } return_value = dashboard.wireless.updateNetworkWirelessRfProfile( network_id,profile["id"], **input_minBitrate) pprint.pprint(return_value) The return value contains: 'perSsidSettings': {'0': {'bandOperationMode': 'dual', 'bandSteeringEnabled': True, 'minBitrate': 1, So the min bitrate is still 1 not 9 like I wanted. If I use the function updateNetworkWirelessSsid there is no way to specify what RFProfile I would like to target. And it only changes the Indoor default profile whether that is one that was there by default or the one that I created as far as I can see there is no way to change the Outdoor profile minbitrate from the API. This has just recently become an issue when these settings were moved to the RFProfile menu from the SSID edit menu.
... View more