jira.js
    Preparing search index...

    Function getQueues

    • This method returns the queues in a service desk. To include a customer request count for each queue (in the issueCount field) in the response, set the query parameter includeCount to true (its default is false).

      Permissions required: service desk's Agent.

      Parameters

      • client: Client
      • parameters: {
            includeCount?: boolean;
            limit?: number;
            serviceDeskId: string;
            start?: number;
        }
        • OptionalincludeCount?: boolean

          Specifies whether to include each queue's customer request (issue) count in the response.

        • Optionallimit?: number

          The maximum number of items to return per page. Default: 50. See the Pagination section for more details.

        • serviceDeskId: string

          ID of the service desk whose queues will be returned. This can alternatively be a project identifier.

        • Optionalstart?: number

          The starting index of the returned objects. Base index: 0. See the Pagination section for more details.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              _expands?: string[];
              _links?: {
                  base?: string;
                  context?: string;
                  next?: string;
                  prev?: string;
                  self?: string;
                  [key: string]: unknown;
              };
              isLastPage?: boolean;
              limit?: number;
              size?: number;
              start?: number;
              values?: {
                  _links?: { self?: string; [key: string]: unknown };
                  fields?: string[];
                  id?: string;
                  issueCount?: number;
                  jql?: string;
                  name?: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >