save the output of the result generated from jira Rest API

sandeep jayawant April 18, 2017

Hi , 

I run the below query which gives me all the issues which are in Development state for a given user . How do I save this in a python dictionary .

curl -D- -u user:pwd -X POST -H "Content-Type: application/json" --data '{"jql": "assignee in (uszsyj1) AND status = \"In Development\" ","startAt": 0,"fields": [ "id","key"]}' "http://myurl/rest/api/2/search"

Thanks

Sandeep

1 answer

0 votes
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.
April 18, 2017
sandeep jayawant April 18, 2017

Hi Nic , 

That link points to my previous question , I was able to figure it out , but for me the next step is to save the output in a python dictionary . This is what I am doing :

import urllib

import json

import requests

query = 'assignee = uszsyj1 AND status = \"In Development\"","startAt": 0,"fields": [ "id","key"]'
jql = '/rest/api/2/search?jql=%s' % urllib.quote(query)

serverURL ='http://zmyurl/rest/api/2/search'

response = requests.put(serverurl +jql ,verify=false,auth=('uszsyj1','******'))

when i do response.status_code

i get 404

Suggest an answer

Log in or Sign up to answer