ChangePassword

Trigger this action to change your password on the appliance.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "ChangePassword": {
    "OldPassword": "old_password",
    "Password": "new_password"
  }
}
OldPassword
String
The existing password.
Password
String
The new password.

Example

To change your password on the appliance from "abc_123_def_345" to "xyz_99_rst_00", post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{ "ChangePassword": { 
              "OldPassword": "abc_123_def_345", 
              "Password": "xyz_99_rst_00" 
         } 
}