jira.js
    Preparing search index...

    Function getImportScheduleLinks

    • Retrieve links for import schedule operations (create, get, update, delete). Returns a createSchedule link to POST a new schedule, and if a schedule already exists, returns a schedule link that can be used with GET, PUT, or DELETE operations.

      Parameters

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

          The importSourceId of the import source configuration for the external import

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              links?: {
                  createSchedule: string;
                  schedule?: string;
                  [key: string]: unknown;
              };
              result?: string;
              [key: string]: unknown;
          },
      >