I know this is simple for some, but I've searched the Atlassian JIRA forums and other REST API sites and still can't find a simple example of parsing the results of the GET command for /rest/api/2/project.
In the example from https://developer.atlassian.com/static/rest/jira/6.1.html#d2e2990, the results are:
"self": "http://www.example.com/jira/rest/api/2/project/EX",
"id": "10000",
"key": "EX",
"name": "Example",
"avatarUrls": {
"24x24": "http://www.example.com/jira/secure/projectavatar?size=small&pid=10000",
"16x16": "http://www.example.com/jira/secure/projectavatar?size=xsmall&pid=10000",
"32x32": "http://www.example.com/jira/secure/projectavatar?size=medium&pid=10000",
"48x48": "http://www.example.com/jira/secure/projectavatar?size=large&pid=10000"Is there a simple command for having the results only include the following:
"EX, Example" - this would be ONLY the key value and the project name, separated by a comma. That's ALL I want. Please don't respond if your answer is "I have a plug-in you can buy for this". I'm not the sharpest pencil in the box, but there must be a command that will get the desired data, without all the html garbage.
Thanks
Hey Chris,
Hope this helps, I could get by Python Requests.
import requests
import json
headers = {
}
r=requests.get('https://jira.atlassian.com/rest/api/2/project', headers=headers)
k= json.loads(r.text)
searchresults = len(k)
for index in range(searchresults):
print('Project Key is',k[index]['key'],'and project name is:',k[index]['name'])
Cheers
Chander
Thanks, Chander!! This looks like what I need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad, that i could help you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.