jira.js
    Preparing search index...

    Function getQueue

    • This method returns a specific queues in a service desk. To include a customer request count for the 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; queueId: number; serviceDeskId: string }
        • OptionalincludeCount?: boolean

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

        • queueId: number

          ID of the required queue.

        • serviceDeskId: string

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

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              _links?: { self?: string; [key: string]: unknown };
              fields?: string[];
              id?: string;
              issueCount?: number;
              jql?: string;
              name?: string;
              [key: string]: unknown;
          },
      >