jira.js
    Preparing search index...

    Function getRemoteIssueLinkById

    • Returns a remote issue link for an issue.

      This operation requires issue linking to be active.

      This operation can be accessed anonymously.

      Permissions required:

      Parameters

      • client: Client
      • parameters: { issueIdOrKey: string; linkId: string }
        • issueIdOrKey: string

          The ID or key of the issue.

        • linkId: string

          The ID of the remote issue link.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              application?: { name?: string; type?: string; [key: string]: unknown };
              globalId?: string;
              id?: number;
              object?: {
                  icon?: {
                      link?: string;
                      title?: string;
                      url16x16?: string;
                      [key: string]: unknown;
                  };
                  status?: {
                      icon?: {
                          link?: string;
                          title?: string;
                          url16x16?: string;
                          [key: string]: unknown;
                      };
                      resolved?: boolean;
                      [key: string]: unknown;
                  };
                  summary?: string;
                  title: string;
                  url: string;
                  [key: string]: unknown;
              };
              relationship?: string;
              self?: string;
              [key: string]: unknown;
          },
      >