jira.js
    Preparing search index...

    Function getEpic

    • Returns the epic for a given epic ID. This epic will only be returned if the user has permission to view it. Note: This operation does not work for epics in next-gen projects.

      Parameters

      • client: Client
      • parameters: { epicIdOrKey: string }
        • epicIdOrKey: string

          The id or key of the requested epic.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              color?: { key?: string; [key: string]: unknown };
              done?: boolean;
              id?: number;
              key?: string;
              name?: string;
              self?: string;
              summary?: string;
              [key: string]: unknown;
          },
      >