action atlassian_get_issue_link { label: "Get issue link" description: "Returns an issue link.\n\nThis operation can be accessed anonymously.\n\n**[Permissions](#permissions) required:**\n\n * *Browse project* [project permission](https://confluence.atlassian.com/x/yodKLg) for all the projects containing the linked issues.\n * If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, permission to view both of the issues." provider: atlassian method: GET path: "/rest/api/3/issueLink/{linkId}" encoding: json input: { type: "object" properties: { linkId: { type: "string" } } required: ["linkId"] additionalProperties: false } output: { type: "object" description: "Details of a link between issues." required: ["inwardIssue", "outwardIssue", "type"] properties: { id: { type: "string" description: "The ID of the issue link." } inwardIssue: { description: "Provides details about the linked issue. If presenting this link in a user interface, use the `inward` field of the issue link type to label the link." type: "object" } outwardIssue: { description: "Provides details about the linked issue. If presenting this link in a user interface, use the `outward` field of the issue link type to label the link." type: "object" } self: { type: "string" format: "uri" description: "The URL of the issue link." } type: { description: "The type of link between the issues." type: "object" } } additionalProperties: false } }