jira.js
    Preparing search index...

    Function list

    • Returns a list of all dashboards, optionally filtering them.

      Parameters

      • client: Client
      • Optionalparameters: { filter?: string; maxResults?: string; startAt?: string }
        • Optionalfilter?: string

          An optional filter that is applied to the list of dashboards.

        • OptionalmaxResults?: string

          A hint as to the maximum number of dashboards to return in each call.

        • OptionalstartAt?: string

          The index of the first dashboard to return (0-based).

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              dashboards?: {
                  id?: string;
                  name?: string;
                  self?: string;
                  view?: string;
                  [key: string]: unknown;
              }[];
              maxResults?: number;
              next?: string;
              prev?: string;
              startAt?: number;
              total?: number;
              [key: string]: unknown;
          },
      >