jira.js
    Preparing search index...

    Function getRemoteLinkById

    • Retrieve the currently stored Remote Link data for the given ID.

      The result will be what is currently stored, ignoring any pending updates or deletes.

      Parameters

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

          The ID of the Remote Link to fetch.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              actionIds?: string[];
              associations?: (
                  | {
                      associationType: string & {}
                      | "issueKeys"
                      | "issueIdOrKeys";
                      values: string[];
                      [key: string]: unknown;
                  }
                  | {
                      associationType: string & {}
                      | "serviceIdOrKeys";
                      values: string[];
                      [key: string]: unknown;
                  }
              )[];
              attributeMap?: Record<string, any>;
              description?: string;
              displayName: string;
              id: string;
              lastUpdated: Date;
              schemaVersion?: string & {} | "1.0";
              status?: {
                  appearance:
                      | "default"
                      | "new"
                      | "removed"
                      | "success"
                      | string & {}
                      | "prototype"
                      | "inprogress"
                      | "moved";
                  label: string;
                  [key: string]: unknown;
              };
              type: | "other"
              | "document"
              | "alert"
              | string & {}
              | "test"
              | "security"
              | "logFile"
              | "prototype"
              | "coverage"
              | "bugReport";
              updateSequenceNumber: number;
              url: string;
              [key: string]: unknown;
          },
      >