Updates Specified RF Profile For This Network
PUT {{baseUrl}}/networks/:networkId/wireless/rfProfiles/:rfProfileId
Updates specified RF profile for this network #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: name| string| The name of the new profile. Must be unique. clientBalancingEnabled| boolean| Steers client to best available access point. Can be either true or false. minBitrateType| string| Minimum bitrate can be set to either 'band' or 'ssid'. bandSelectionType| string| Band selection can be set to either 'ssid' or 'ap'. apBandSettings| object| Settings that will be enabled if selectionType is set to 'ap'. twoFourGhzSettings| object| Settings related to 2.4Ghz band fiveGhzSettings| object| Settings related to 5Ghz band
Supports Action Batches
Resource | Operation |
---|---|
/networks/{networkId}/wireless/rfProfiles/{rfProfileId} | update |
Request Body
{"name"=>"<string>", "clientBalancingEnabled"=>"<boolean>", "minBitrateType"=>"<string>", "bandSelectionType"=>"<string>", "apBandSettings"=>{"bandOperationMode"=>"<string>", "bandSteeringEnabled"=>"<boolean>"}, "twoFourGhzSettings"=>{"maxPower"=>"<integer>", "minPower"=>"<integer>", "minBitrate"=>"<float>", "validAutoChannels"=>["<integer>", "<integer>"], "axEnabled"=>"<boolean>", "rxsop"=>"<integer>"}, "fiveGhzSettings"=>{"maxPower"=>"<integer>", "minPower"=>"<integer>", "minBitrate"=>"<integer>", "validAutoChannels"=>["<integer>", "<integer>"], "channelWidth"=>"<string>", "rxsop"=>"<integer>"}}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
X-Cisco-Meraki-API-Key | null | ||
Content-Type | string |
RESPONSES
status: OK
{"id":"1234","networkId":"N_24329156","name":"Some Custom RF Profile","clientBalancingEnabled":true,"minBitrateType":"band","bandSelectionType":"ap","apSelectionSettings":{"bandOperationMode":"dual","bandSteeringEnabled":true},"twoFourGhzSettings":{"maxPower":30,"minPower":5,"minBitrate":11,"rxsop":null,"validAutoChannels":[1,6,11],"axEnabled":true},"fiveGhzSettings":{"maxPower":30,"minPower":8,"minBitrate":12,"rxsop":null,"validAutoChannels":[36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,144,149,153,157,161,165],"channelWidth":"auto"}}