jira.js
    Preparing search index...

    Function getProjectsForIssueTypeScreenScheme

    • Returns a paginated list of projects associated with an issue type screen scheme.

      Only company-managed projects associated with an issue type screen scheme are returned.

      Permissions required: Administer Jira global permission.

      Parameters

      • client: Client
      • parameters: {
            issueTypeScreenSchemeId: number;
            maxResults?: number;
            query?: string;
            startAt?: number;
        }
        • issueTypeScreenSchemeId: number

          The ID of the issue type screen scheme.

        • OptionalmaxResults?: number

          The maximum number of items to return per page.

        • Optionalquery?: string
        • OptionalstartAt?: number

          The index of the first item to return in a page of results (page offset).

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              isLast: boolean;
              maxResults: number;
              nextPage?: string;
              self?: string;
              startAt: number;
              total: number;
              values: {
                  avatarUrls?: {
                      "16x16"?: string;
                      "24x24"?: string;
                      "32x32"?: string;
                      "48x48"?: string;
                      [key: string]: unknown;
                  };
                  id?: string;
                  key?: string;
                  name?: string;
                  projectCategory?: {
                      description?: string;
                      id?: string;
                      name?: string;
                      self?: string;
                      [key: string]: unknown;
                  };
                  projectTypeKey?: | string & {}
                  | "software"
                  | "service_desk"
                  | "business"
                  | "product_discovery"
                  | "customer_service";
                  self?: string;
                  simplified?: boolean;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >