Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Question about jira.issueviews:searchrequest-xml

Gustavo Miller June 28, 2021

I am attempting to download automatically some issues from JIRA. I have written some code with the help of other JIRA users and I can download issue, but in JSON, which is not very easy to manipulate. I am very good and my application can read easily XML.

https://myJIRA.site/sr/jira.issueviews:searchrequest-xml/10083/SearchRequest-10083.xml?atl_token=[mytoken_generated]_lin&tempMax=1000

This returns me the XML document with all the documents I need; then I use this XML to update a local database. So far so good.

Now I want to download them using VBA, but I cannot get the API working. The GET looks like this: (the encoding is fine because this returns JSON)

url = ""https://my.JIRA.site/sr/jira.issueviews:searchrequest-xml?filter=10083/SearchRequest-10083.xml"

Set JiraService = New MSXML2.XMLHTTP60
With JiraService
       .Open "GET", [url], False
       .setRequestHeader "Content-Type", "application/json"
       .setRequestHeader "Accept", "application/json"
       .setRequestHeader "Authorization", "Basic " & modSecurity.EncodeBase64()
       .send

       result= .responseText

End With

By the way, if you are thinking to change /json to /xml, think again. It does not work

No cigar...

1 answer

0 votes
Rodriguez_ Cristian May 3, 2022

... Hello Gustavo,
I was wondering if you ever get this to work. I'm able to download all my issues from the filters with all the available fields without the API and it takes 12 seconds max...

I accomplished it using the "export > HTML all fields" feature to download the filters, then I read the file in excel.

What I need is how to get the xml content though VBA so I can extract the atl_token like the one below, or if you know how to generate the token

https://jira.company.com/secure/WorkflowUIDispatcher.jspa?id=9969999&action=111&atl_token=BBBB-8MMM-RRRR-EEEE_50646e0436ef863a17d4b4c4027ad00be0ddff3f_lin


Any help is appreciated. 
Thanks!

-Cris Rguez




Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events