Ifd:updatePasswordForCurrentUser

From dev.ifd-library.org

Jump to: navigation, search

API version 2

Function public String updatePasswordForCurrentUser (
                                   String new_password,
                                   String session_id)
                      throws IfdServerException

Function to update password for the current user.

Input:

  • String new_password The new password.
  • String session_id The session identifier for the active administrator.

Return:

The number 1 (as string) if the update went well, the number 0 (as string) otherwise.

API version 3

Function public String updatePasswordForCurrentUser (
                                   String session_id,
                                   String new_password)
                      throws IfdServerException

EXPRESS Heading

QUERY FUNCTION updatePasswordForCurrentUser(
                     new_password	: STRING) : IfdStringInformation;

Function to update password for the current user.

Input:

  • String session_id The session identifier for the active administrator.
  • String new_password The new password.

Return:

  • String - (151) Status of the change. ‘0’ if everything is OK. Other values – some error.


Back to the API

Comments: