jira.js
    Preparing search index...

    Function getIdsOfWorklogsModifiedSince

    • Returns worklogs id and update time of worklogs that was updated since given time. The returns set of worklogs is limited to 1000 elements. This API will not return worklogs updated during last minute.

      Parameters

      • client: Client
      • Optionalparameters: { since?: number }
        • Optionalsince?: number

          A date time in unix timestamp format since when updated worklogs will be returned.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              isLastPage?: boolean;
              lastPage?: boolean;
              nextPage?: string;
              self?: string;
              since?: number;
              until?: number;
              values?: {
                  updatedTime?: number;
                  worklogId?: number;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >