action atlassian_get_remote_issue_links { label: "Get remote issue links" description: "Returns the remote issue links for an issue. When a remote issue link global ID is provided the record with that global ID is returned, otherwise all remote issue links are returned. Where a global ID includes reserved URL characters these must be escaped in the request. For example, pass `system=http://www.mycompany.com/support&id=1` as `system%3Dhttp%3A%2F%2Fwww.mycompany.com%2Fsupport%26id%3D1`.\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" encoding: json input: { type: "object" properties: { globalId: { type: "string" } issueIdOrKey: { type: "string" } } required: ["issueIdOrKey"] 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 } }