Issue search and excel export for JIRA, outside JIRA

Copper Contributor

I'm looking to download a list of issues from our JIRA issue list, to process further in VBA and generate a report from the issue list. I want this process to be automated from start to end so e.g. I run a java or VB or C# program, which does a search and download from JIRA (somehow) then runs a VBA program to extract and format the issues into a report. Is there anyway this can be done? I'm using JIRA 3.13.

I've looked at the JIRA and Atlassian plugins but don't quite understand how they work. Aren't plugins meant to be deployed into the JIRA instance. I don't see how plugins can achieve what i want to do

1 Reply

@Soujanya-naganuri tekslate 

 

Version 3 of the Jira Cloud platform REST API, which is the latest version.

The URIs for resources have the following structure:

https://<site-url>/rest/api/3/<resource-name>

For example, https://your-domain.atlassian.net/rest/api/3/issue/DEMO-1

Note that version 3 of the Jira Cloud platform REST API is in beta.

However, they are under development and may change.

  • body in comments, including where comments are used in issue, issue link, and transition resources.
  • comment in worklogs.
  • description and environment fields in issues.
  • textarea type custom fields (multi-line text fields) in issues. Single line custom fields (textfield) accept a string and don't handle Atlassian Document Format content.