I'm looking for a way to access info related to remotelinks on an issue without having to do API calls and text manipulation. These remote links are NOT issue links.
I have several jira automations for handling issues of a certain type. When this type of issue is created, an automation runs that does the following:
- modifies some custom fields on the issue
- creates a wiki page
- creates an issue in a different project
- adds content to the wiki page created in step 2
The first problem I've noticed is that when using the "Create page in Confluence" automation action, there's not an option to automatically link the created page to the trigger issue. So I have to either manually link the page after the automation runs or include additional API calls to link the wiki page. (How to link a Confluence page on a Jira Cloud Issue via Rest API )
I have a manual automation that will add content to the created wiki page using an input variable for the page ID. However, I'd like to have the manual automation add content without requiring an input value.
Confluence pages linked to Jira issues are added as remote links. I haven't been able to find any smart values that would return remote link values tied to an issue so to do this I had to:
- API call to get the remote link (Get Remote Issue Links)
- remove part of the url string to get the page Id
- {{webResponse.body.get(0).object.url.remove("{{baseURL}}/wiki/pages/viewpage.action?pageId=")}}
- API call to get page details (Get Page by ID)
- API call to update wiki page (Update Page)
This seems excessive with unnecessary steps to get remote links tied to an issue.
The remote links are also not included when exporting issue data.

