jira.js
    Preparing search index...

    Function getProject

    • Returns a full representation of a project in JSON format. All project keys associated with the project will only be returned if expand=projectKeys.

      Parameters

      • client: Client
      • parameters: { expand?: string; projectIdOrKey: string }
        • Optionalexpand?: string

          Parameters to expand

        • projectIdOrKey: string

          Project id or project key

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              archived?: boolean;
              avatarUrls?: Record<string, string>;
              description?: string;
              id?: string;
              key?: string;
              name?: string;
              self?: string;
              [key: string]: unknown;
          },
      >