how i can get issue fields value using C#

am_dev February 27, 2014

in my jira i was add a custom field (text field) in issue ..and i want retrieve this field value (what i write in text field ) using c#

thx for help

1 answer

1 vote
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 27, 2014

You can query JIRA using REST APIs, using a c# REST client to do that or a normal http call that can handle JSON response -

https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Query+issues

am_dev February 27, 2014

thx for replay ..

i want get a value field using c# ..for exemple in issue i added a text field called SERVER, in this text field i will write path of server ...now i want retrieve this value (path of server ) lik a string value for i can use it in my c# proram

thx

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 27, 2014

You should issue a REST call to Jira in your c# program. Tarun has given the links to the examples of what your c# code needs to do.

Suggest an answer

Log in or Sign up to answer