retrieve issuelinks field value from an issue using Atlassian.jira sdk in C#

Jira Tutorial December 31, 2020

Hi,

Iam using the following code to connect with Jira. Getting summary,description,etc., fields successfully for each issue. But unable to retrieve values for fields issuelinks, Attachments, Activity. Are there any classes or interfaces to access these fields using Atlassian.Jira package?

 

 

using Atlassian.Jira;

namespace JiraResultsApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Jira jiraConn = new Jira("http://yourjiraurl.com/", jUserID, jPassword);
            string jqlString = PrepareJqlbyDates();
            IPagedQueryResult<Atlassian.Jira.Issue> jiraIssues = jiraConn.Issues.GetIssuesFromJqlAsync(jqlString, 999).Result;

            foreach(var issue in jiraIssues)
            {
                 System.Console.WriteLine(issue.Key.Value +" -- "+ issue.summary);
            }
         }

        static string PrepareJqlbyDates()
        {
            string jqlString = "project = PRJ";
            return jqlString;
        }
    }
}

 How to get field values of issuelinks, Attachments and activity fields for each issue.

Thank you!!

1 answer

0 votes
Ravi Sagar _Sparxsys_
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.
December 31, 2020

Hi @Jira Tutorial 

Since you are using REST API, you need to use the correct end point to fetch issue details.

Try this end point.

JIRAURL/rest/api/3/issue/ISSUEKEY

In your code you must be getting list of issues based on the JQL, when you parse individual issue use the end point above to get further details of the issue.

Ravi

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events