jira.js
    Preparing search index...

    Function getImportSchedule

    • Retrieves a specific scheduled import configuration by ID

      Parameters

      • client: Client
      • parameters: { importScheduleId: string; importSourceId: string }
        • importScheduleId: string

          The ID of the import schedule

        • importSourceId: string

          The ID of the import source

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              collectionId?: string;
              created?: Date;
              id?: string;
              importSourceId?: string;
              runInterval?: string & {}
              | "ONCE"
              | "DAILY"
              | "WEEKLY"
              | "MONTHLY";
              startTime?: Date;
              updated?: Date;
              [key: string]: unknown;
          },
      >