jira.js
    Preparing search index...

    Function findGroups

    • Returns groups with substrings matching a given query

      Parameters

      • client: Client
      • Optionalparameters: { exclude?: string; maxResults?: string; query?: string; userName?: string }
        • Optionalexclude?: string

          List of groups to exclude

        • OptionalmaxResults?: string

          Maximum number of results to return

        • Optionalquery?: string

          A String to match groups against

        • OptionaluserName?: string

          Username for the context

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              groups?: {
                  html?: string;
                  labels?: {
                      text?: string;
                      title?: string;
                      type?: string & {}
                      | "ADMIN"
                      | "SINGLE"
                      | "MULTIPLE";
                      [key: string]: unknown;
                  }[];
                  name?: string;
                  [key: string]: unknown;
              }[];
              header?: string;
              total?: number;
              [key: string]: unknown;
          },
      >