action atlassian_get_remote_issue_link_by_id { label: "Get remote issue link by ID" description: "Returns a remote issue link for an issue.\n\nThis operation requires [issue linking to be active](https://confluence.atlassian.com/x/yoXKM).\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is in.\n * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue." provider: atlassian method: GET path: "/rest/api/3/issue/{issueIdOrKey}/remotelink/{linkId}" encoding: json input: { type: "object" properties: { issueIdOrKey: { type: "string" } linkId: { type: "string" } } required: ["issueIdOrKey", "linkId"] additionalProperties: false } output: { type: "object" description: "Details of an issue remote link." properties: { application: { description: "Details of the remote application the linked item is in." type: "object" } globalId: { type: "string" description: "The global ID of the link, such as the ID of the item on the remote system." } id: { type: "integer" format: "int64" description: "The ID of the link." } object: { description: "Details of the item linked to." type: "object" } relationship: { type: "string" description: "Description of the relationship between the issue and the linked item." } self: { type: "string" format: "uri" description: "The URL of the link." } } additionalProperties: false } }