jira.js
    Preparing search index...

    Function updateCurrentUser

    • Modify currently logged user. The 'value' fields present will override the existing value. Fields skipped in request will not be changed. Only email and display name can be change that way. Requires user password.

      Parameters

      • client: Client
      • parameters: {
            active?: boolean;
            applicationKeys?: string[];
            displayName?: string;
            emailAddress?: string;
            key?: string;
            name?: string;
            notification?: string;
            password?: string;
            self?: string;
        }
      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              active?: boolean;
              applicationKeys?: string[];
              displayName?: string;
              emailAddress?: string;
              key?: string;
              name?: string;
              notification?: string;
              password?: string;
              self?: string;
              [key: string]: unknown;
          },
      >