Update The SNMP Settings For An Organization

PUT {{baseUrl}}/organizations/:organizationId/snmp

Update the SNMP settings for an organization #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: v2cEnabled| boolean| Boolean indicating whether SNMP version 2c is enabled for the organization. v3Enabled| boolean| Boolean indicating whether SNMP version 3 is enabled for the organization. v3AuthMode| string| The SNMP version 3 authentication mode. Can be either 'MD5' or 'SHA'. v3AuthPass| string| The SNMP version 3 authentication password. Must be at least 8 characters if specified. v3PrivMode| string| The SNMP version 3 privacy mode. Can be either 'DES' or 'AES128'. v3PrivPass| string| The SNMP version 3 privacy password. Must be at least 8 characters if specified. peerIps| array| The list of IPv4 addresses that are allowed to access the SNMP server.

Request Body

{"v2cEnabled"=>"<boolean>", "v3Enabled"=>"<boolean>", "v3AuthMode"=>"<string>", "v3AuthPass"=>"<string>", "v3PrivMode"=>"<string>", "v3PrivPass"=>"<string>", "peerIps"=>["<string>", "<string>"]}

HEADERS

KeyDatatypeRequiredDescription
X-Cisco-Meraki-API-Keynull
Content-Typestring

RESPONSES

status: OK

{&quot;v2cEnabled&quot;:false,&quot;v3Enabled&quot;:true,&quot;v3AuthMode&quot;:&quot;SHA&quot;,&quot;v3PrivMode&quot;:&quot;AES128&quot;,&quot;peerIps&quot;:[&quot;123.123.123.1&quot;],&quot;hostname&quot;:&quot;snmp.meraki.com&quot;,&quot;port&quot;:443}