jira.js
    Preparing search index...

    Function getRequestTypeGroups

    • This method returns a service desk's customer request type groups. Jira Service Management administrators can arrange the customer request type groups in an arbitrary order for display on the customer portal; the groups are returned in this order.

      Permissions required: Permission to view the service desk.

      Parameters

      • client: Client
      • parameters: { limit?: number; serviceDeskId: string; start?: number }
        • Optionallimit?: number

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

        • serviceDeskId: string

          The ID of the service desk whose customer request type groups are to 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?: { id?: string; name?: string; [key: string]: unknown }[];
              [key: string]: unknown;
          },
      >