Questions tagged [jira-rest-java-api]

REST Java Client for JIRA is for developers who want to integrate JIRA with other Java-based standalone or web applications.

REST Java Client for JIRA

This is not a plugin per se. It's a Java client library (usuable from any JVM-based language like Scala, Groovy, JRuby, etc.).

The purpose of this library is to make JIRA REST API very easy to use on the client side.

JRJC removes the need of traversing URIs, preparing requests and parsing the output.

This project is not actively supported by Atlassian, but feel free to contribute to it.

Source: REST Java Client for JIRA

306 questions
-1
votes
1 answer

To develop a command line interface where a text or XML file can be sent to a JIRA to execute multiple individual/unique tasks

strong text i could not get how i can perform unique individual tasks like... Example: 50 issues to link with 50 different issues , i have entered the ISSUE number ,lintk type and the target issue number in an excel sheet. now i need to perform…
-2
votes
2 answers

Write JQL to find an issue that has subissues

JQL to check issues of type Fix that have non empty issue links. I need issues under the resolves as shown below in the following screenshot:
-2
votes
1 answer

API to fetch last login date jira cloud

Is there any JIRA REST API which can give information about last login time of all users for jira cloud platform? If yes, then please provide me the details of the request URL.
-2
votes
1 answer

Convert string response to map in golang

I'm using https://godoc.org/github.com/andygrunwald/go-jira#IssueService.GetCustomFields to get a custom field and I'm attempting to consume some of the data. func getsomedata(issue_id string) { issue, _, _ := jiraClient.Issue.Get(issue_id,…
Jukie
  • 35
  • 1
  • 1
  • 5
-3
votes
1 answer

Jira Python: Syntax error appears when trying to print

from jira.client import jira options = {'server': 'https://URL.com'} jira = JIRA(options, basic_auth=('username', 'password')) issues = jira.search_issues('jqlquery') for issue in issues: print issue I want to print the output of the jql…
-4
votes
1 answer

How to connect Java Applocation to JIRA?

I want my java application to communicate with JIRA how can i achieve this functinality. I mean what configuratons are need to add, what are jar files etc ?
1 2 3
20
21