Trying to create a python script that will launch Jira create issue page

Vincent Cheung September 25, 2014

This is my first time using JIRA and I'm currently trying to create a python script that will open a JIRA create issue page. What the end result is that a user would run the script and the JIRA create issue page will open up with certain parts of it being already filled in with some information I gather about the current issue. I'm wondering if this is possible to do and if so could someone point me in the right direction?

1 answer

1 accepted

1 vote
Answer accepted
David Yu
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.
September 26, 2014

A basic start would be to follow these steps on how to construct a URL to create an issue:

https://confluence.atlassian.com/display/JIRA051/Creating+Issues+via+direct+HTML+links

If you're just providing a static link to the same project each time, then it's pretty simple. If it's more interactive, your script may need to access the JIRA API to fetch the list of projects for example.

 

Suggest an answer

Log in or Sign up to answer