Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to issue the following jira api call in python, including authentication to jira server?

Deleted user August 15, 2016

Hello, 

As a newbie, I'd like to get an idea how to issue a JIRA rest api, as well as how to authenticate to the server? Here is an example api:

# GET http://<Your_JIRA _Server>/rest/api/2/issue/<Issue_Key>
example: GET 'http://dev:8080/rest/api/2/issue/TWP-1116
  1. I understand you must first authenticate to the server and am looking for a basic example using something like:   
 
username = b'mwise'
plus = b':'
password = b'PAssword'
issueId = 'TWP-1116'
baseURL = 'http://dev:8080'
getIssueId = baseURL + '/rest/api/2/issue/' #
credentials = (username + plus + password).decode("utf-8")
 
headers = {"Authorization": " Basic " + credentials, "Content-Type": "application/json"}

 

2. Once authenticated, I'd like an example of issuing the api? Something like?

request = urllib.request.urlopen(getIssueId + issueId, headers=headers)
request.get_method = lambda: 'GET'
response_body = urllib.urlopen(request)
print(response_body.read())

 

3. There is then a json packet response, which needs to be parsed. How would this example parse to get the 'id' included in the "expand" response ?

{
"expand": "renderedFields,names,schema,transitions,operations,editmeta,changelog",
"id": "15828",
"self": "http://dev:8080/rest/api/2/issue/15828",
"key": "TWP-1108",
"fields": {
"issuetype": {
"self": "http://devcenter:8080/rest/api/2/issuetype/10205",
"id": "10205",
"description": "This Issue Type is used to create Zephyr Test within Jira.",
"iconUrl": "http://dev:8080/download/resources/com.thed.zephyr

 

 

2 answers

1 accepted

1 vote
Answer accepted
Petar Petrov (Appfire)
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.
August 15, 2016

I would use the Requests library - it will save you from writing a lot of boilerplate. Check out the documentation - it's pretty good. It handles all the things you need (basic authentication, JSON parsing, etc.). 

In your case the code would look something like:

r = requests.get(baseURL + '/rest/api/2/issue/TWP-1116', auth=('user', 'pass'))
id = r.json().id
Deleted user August 16, 2016

Petar, 

Thanks! I now have the general idea!

Naresh Gundu June 17, 2019

Hi Petar,

 

auth is not working after username, password are deprecated and we have to use the accountid inplace of it.

 

Thanks

2 votes
Эмиль Вахитов
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 24, 2018

There is also a Python module called jira.

It wraps Jira REST API and is much easier to use than requests.

Check it out.

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, atlassian community, loom ai, atlassian loom ai, loom, atlassian ai, record recaps of meetings, meeting recaps, loom recaps, share meeting recaps,

Loom’s guide to great meetings 📹

Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.

Register today!
AUG Leaders

Atlassian Community Events