When we have linked multiple confluence links linked to JIRA from application linking tab, the how we fetch the specific Application Link using
getApplicationLink(ApplicationId id) if we have the hardcoded id fetched from url.
Example:
ID : f07bbf39-549b-3389-a337-1f171ba25s33
Hi @Sonia
Try with Jira's REST API to retrieve a list of all configured application links.
You can do this by running the command
curl -s -u "username:password" https://<jira-base-url>/rest/applinks/3.0/applinks | jq '.[] | .id', which will return a list of application link IDs. Verify that your specific ID is included in the list.
Also, it is recommended to verify that the hardcoded Application Link ID (f07bbf39-549b-3389-a337-1f171ba25s33) is correct and corresponds to an existing application link configured in Jira.
You can check the "Application Links" section in Jira's administration settings to confirm.
Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.