jira.js
    Preparing search index...

    Function createUser

    • Create user. By default created user will not be notified with email. If password field is not set then password will be randomly generated.

      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;
          },
      >