jira.js
    Preparing search index...

    Function getAllQuickFilters

    • Returns all quick filters from a board, for a given board ID.

      Parameters

      • client: Client
      • parameters: { boardId: number; maxResults?: number; startAt?: number }
        • boardId: number

          The ID of the board that contains the requested quick filters.

        • OptionalmaxResults?: number

          The maximum number of sprints to return per page. See the 'Pagination' section at the top of this page for more details.

        • OptionalstartAt?: number

          The starting index of the returned quick filters. Base index: 0. See the 'Pagination' section at the top of this page for more details.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              isLast: boolean;
              maxResults: number;
              startAt: number;
              total: number;
              values: {
                  boardId?: number;
                  description?: string;
                  id?: number;
                  jql?: string;
                  name?: string;
                  position?: number;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >