jira.js
    Preparing search index...

    Function getQuickFilter

    • Returns the quick filter for a given quick filter ID. The quick filter will only be returned if the user can view the board that the quick filter belongs to.

      Parameters

      • client: Client
      • parameters: { boardId: number; quickFilterId: number }
        • boardId: number
        • quickFilterId: number

          The ID of the requested quick filter.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              boardId?: number;
              description?: string;
              id?: number;
              jql?: string;
              name?: string;
              position?: number;
              [key: string]: unknown;
          },
      >