jira.js
    Preparing search index...

    Function getProjectIssueTypeUsagesForStatus

    • Returns a page of issue types in a project using a given status.

      Parameters

      • client: Client
      • parameters: {
            maxResults?: number;
            nextPageToken?: string;
            projectId: string;
            statusId: string;
        }
        • OptionalmaxResults?: number

          The maximum number of results to return. Must be an integer between 1 and 200.

        • OptionalnextPageToken?: string

          The cursor for pagination

        • projectId: string

          The projectId to fetch issue type usages for

        • statusId: string

          The statusId to fetch issue type usages for

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              issueTypes?: {
                  nextPageToken?: string
                  | null;
                  values?: { id?: string; [key: string]: unknown }[];
                  [key: string]: unknown;
              };
              projectId?: string;
              statusId?: string;
              [key: string]: unknown;
          },
      >