Reputation: 1752
I would like to get the linked issues for a specific issue through the JIRA REST API.
I would like to use the URL: https://jira.atlassian.com/rest/api/latest/issue/JRA-9
I tried the following:
It should be there if I call the getIssue method according to the documentation.
What am I doing wrong? Hope somebody can help! Thanks!
Upvotes: 2
Views: 9202
Reputation: 44
You first have to use your own JIRA domain, like http://localhost:8080
and then just add the following JQL: http://localhost:8080/rest/api/2/issue/JRA-9?fields=issuelinks
Upvotes: 2