UserPasswdUpdate_API
Description |
Parameters |
|
---|---|---|
Passed |
Returned |
|
This method changes a password for a specified user. Note: The method does not propagate information to Operations (info on updating the user password is not transferred to Operations). |
3 | 1 |
Syntax
Copy
ErrorMessage BM::UserPasswdUpdate_API(
Int UsersID;
Str(32) NewPassword;
Str(32) ConfirmPassword.
)
returns
Copy
Str ErrorMessage – message after user password has been updated: "Your changes have been saved."
Special Notes
Important: Sensitive data is passed to the method. To avoid logging of sensitive data, the Password argument must be escaped as this described in the section Important: Avoid Sensitive Data Logging. Avoiding sensitive data is obligatory, otherwise sensitive data will be logged.
- Int UsersID – ID of customer account user. Must exist already in the Billing;
- Str(32) NewPassword – new user's password;
- Str(32) ConfirmPassword – password confirmation.