Skip to main content

ADD SNMPV3 Configuration

This operation is used to add an SNMPV3 configuration under control panel.

Request Body required
  • snmv3ConfigOperationType int32
  • snmv3Info object
  • encryptAlgorithm int32
  • hostName string
  • privacyAlgorithm int32
  • privacyCredentials boolean
  • userAccount object
  • password string
  • userName string
Responses

OK


Schema
  • snmv3ConfigOperationType integer
  • snmv3Info object
  • hostName string
  • privacyCredentials boolean
  • privacyAlgorithm integer
  • encryptAlgorithm integer
  • userAccount object
  • password string
  • userName string
POST /commserv/snmpv3configuration    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body required

{
"snmv3ConfigOperationType": 1,
"snmv3Info": {
"encryptAlgorithm": 0,
"hostName": "test5",
"privacyAlgorithm": 0,
"privacyCredentials": false,
"userAccount": {
"password": "SamplePassword1@#",
"userName": "testadmin"
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/CommServ/SNMPV3Configuration' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"snmv3ConfigOperationType": 1,
"snmv3Info": {
"encryptAlgorithm": 0,
"hostName": "test5",
"privacyAlgorithm": 0,
"privacyCredentials": false,
"userAccount": {
"password": "SamplePassword1@#",
"userName": "testadmin"
}
}
}'