jira.js
    Preparing search index...

    Function findObjectHistory

    • Retrieve the history entries for this object

      Parameters

      • client: Client
      • parameters: { asc?: boolean; id: string }
        • Optionalasc?: boolean

          Should the history be retrieved in ascending order

        • id: string

          The object id to operate on

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              actor: {
                  avatarUrl?: string;
                  displayName?: string;
                  emailAddress?: string;
                  html?: string;
                  isDeleted?: boolean;
                  key?: string;
                  lastSeenVersion?: string;
                  name?: string;
                  renderedLink?: string;
                  self?: string;
                  [key: string]: unknown;
              };
              affectedAttribute?: string;
              created: Date;
              id: string;
              newValue?: string;
              objectId: string;
              oldValue?: string;
              type: number;
              [key: string]: unknown;
          }[],
      >