jira.js
    Preparing search index...

    Function getIssueEstimationForBoard

    • Returns the estimation of the issue and a fieldId of the field that is used for it. Original time internally stores and returns the estimation as a number of seconds. The field used for estimation on the given board can be obtained from board configuration resource. More information about the field are returned by edit meta resource or field resource.

      Parameters

      • client: Client
      • parameters: { boardId?: number; issueIdOrKey: string }
        • OptionalboardId?: number

          The id of the board required to determine which field is used for estimation.

        • issueIdOrKey: string

          The Id or key of the requested issue.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              fieldId?: string;
              value?: Record<string, any>;
              [key: string]: unknown;
          },
      >