jira.js
    Preparing search index...

    Function findBulkAssignableUsers

    • Returns a list of users that match the search string and can be assigned issues for all the given projects.

      Parameters

      • client: Client
      • Optionalparameters: { maxResults?: number; projectKeys?: string | string[]; username?: string }
        • OptionalmaxResults?: number

          The maximum number of users to return (defaults to 50). The maximum allowed value is 100 (The combination of maxResults and startAt is limited to the first 100 results). If you specify a value that is higher than this number, your search results will be truncated. If you send a request with startAt=98 and maxResults=20, it will only return 2 users.

        • OptionalprojectKeys?: string | string[]

          The keys of the projects we are finding assignable users for, comma-separated

        • Optionalusername?: string

          The username

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              active?: boolean;
              applicationRoles?: {
                  callback?: { [key: string]: unknown };
                  maxResults?: number;
                  pagingCallback?: { [key: string]: unknown };
                  size?: number;
                  [key: string]: unknown;
              };
              avatarUrls?: Record<string, string>;
              deleted?: boolean;
              displayName?: string;
              emailAddress?: string;
              expand?: string;
              groups?: {
                  callback?: { [key: string]: unknown };
                  maxResults?: number;
                  pagingCallback?: { [key: string]: unknown };
                  size?: number;
                  [key: string]: unknown;
              };
              key?: string;
              lastLoginTime?: string;
              locale?: string;
              name?: string;
              self?: string;
              timeZone?: string;
              [key: string]: unknown;
          },
      >