AddPasswordMap
Trigger this action to add a password to the password map.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following format:{
"AddPasswordMap": {
"AliasName": "password_alias",
"Password": "password"
}
}
- AliasName
- String
- Password
- String
Example
To set the alias "wills_password" for the plain text password "abc_123_def_456", post the
following payload to
https://yourhost:5554/mgmt/actionqueue/default
:{
"AddPasswordMap": {
"AliasName": "wills_password",
"Password": "abc_123_def_456"
}
}