How should I integrate JIRA to my software to be able to use it's ticket management? I've gone through REST API documentation but not able to understand what exactly should I do.
Asked
Active
Viewed 116 times
0
-
This question is far too vague to be able to provide a useful answer. – ZeddZull Mar 16 '17 at 20:48
-
basically I want to be able to fetch jira tickets and to be able to manipulate thm through my application. – Bhakti Kulkarni Mar 20 '17 at 05:38
-
You can use the REST API to get the information about the tickets, but you cant just manipulate them – Runningriot Mar 20 '17 at 08:26
-
@Runningriot I've successfully fetched the issues and the details related to each of them. Can't I store that data and use it to edit which will ultimately edit the data at jira server? – Bhakti Kulkarni Mar 20 '17 at 10:33
-
No, the tickets information is stored in a database. You can alter the database yourself but that isnt done through the jira API. – Runningriot Mar 20 '17 at 12:06
-
@Runningriot okay! Thanks a lot :) – Bhakti Kulkarni Mar 20 '17 at 12:21
-
Of course you can update issues via the JIRA REST API. Just look at the available PUT/POST resources. – GlennV Jun 27 '17 at 13:45