Is there a way to retrieve the Issue Linked date using the JIRA API?

Guy Anela April 5, 2017

We're using the search API call to retrieve a specific set of issues and, within the API call, we're requesting the issuelinks field to get back all of the issues that are linked to the set of issues being returned. We're successfully getting the linked issue data but my question is, is there a way to get the "date" the issue was linked?

I tried making an issueLink API call for a specific link id but I'm not seeing a date returned in that response either. Is there some way to extract the date? 

Thanks in advance!

1 answer

1 accepted

0 votes
Answer accepted
Phillip Ponzer [Cprime]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 5, 2017

What you want to look through is the issue's change log:

https://docs.atlassian.com/jira/REST/7.2.6/#api/2/issue-getIssue

The change log stores all tracked changes to an issue, including when it was linked to another issue.

You'll need to add "expand=changelog" to your params for the issue request to see it.

Guy Anela April 5, 2017

Awesome! We'll give it a try. ...Thanks Phillip!

Suggest an answer

Log in or Sign up to answer