How to process JIT output from Get Issue to get the desired field like topic and description

I want to get title and description from some of the JIRA task. But the output in Get Issue is in JIT object as i understand. So how can i get the description part and print it out for me?

@timweilun,

You can try accessing the JIRA issue fields directly by using issue.Fields("summary").ToString for the title and issue.Fields("description").ToString for the description, then pass them to a Write Line or Log Message activity to print.

Check:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.