Hans Leautaud
Hans Leautaud

Reputation: 1752

Get linked issues in JIRA REST API

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

Answers (1)

DanielC
DanielC

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

Related Questions