Questions tagged [jira]

Questions tagged with [jira] should be related to interacting with Jira programmatically.

Jira is a proprietary issue tracking product, developed by Atlassian. It's often used to track issues for software development and other teams, and has many apps to support this.

There are two ways to interact with JIRA programmatically:

  1. APIs are typically used when building a Plugins2 plugin for Jira Data Center, which is a single containing code, an app descriptor () and usually some template files to render .
  2. REST APIs are typically used when building Connect add-ons (web applications for Jira Cloud) or configuring webhooks.
5925 questions
1
vote
1 answer

Jira Atlassian API Pagination

I've used the JIRA API a few timees, but only for small extracts so I've never had to use pagniation to return more results than the max result. Here's the documentation for the API:…
Rebecca
  • 69
  • 1
  • 2
  • 11
1
vote
1 answer

config.ini not reading string

I am trying to build my first config.ini file for Python, but having issues using it in my script. I am attempting to use it with the JIRA module for work, so that's where I am hitting a snag. Before using a config file, when assigning a variable,…
cmcigas
  • 11
  • 2
1
vote
1 answer

IN operator for JQL in Jira Rest API

I would like to translate the following JQL query for an REST API call : project=XX AND component IN ("SomeTitle") first part of the url would be: /rest/api/2/search?jql=project=XX but how do I set the component IN ("SomeTitle") in the url ? What…
schweppes0x
  • 182
  • 1
  • 13
1
vote
0 answers

VSCode with Bitbucket and JIRA

I’m having issues linking my JIRA and Bitbucket accounts to my VSCode. I’ve downloaded the Atlassian extension and followed the steps provided here: https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-vs-code/ However, my Atlassian…
1
vote
0 answers

How do I change issuetype in Jira using PowerShell?

Using the PowerShell module JiraPS from Atlassian, I can work with all my Jira-issues using PowerShell. However, I'm looking for a way to change the IssueType of an existing issue. I'm required to specify an issue type when creating a new…
Dennis
  • 871
  • 9
  • 29
1
vote
0 answers

Rest or java API to get a user's security schemes or security levels

Is there any REST API or Java API through which I can get a user's security schemes or security levels? I want to know to what security level or security scheme the user is added.
1
vote
1 answer

How to change the socket time out value in Jira?

We are trying to change the socket timeout in Jira as some of the REST API calls are taking too long to respond due to which we are getting Request Time Out Error. For changing it, we tried the following but NONE of them worked: We made changes in…
1
vote
1 answer

How to filter issues with specific priority in jira rest API

I am using JIRA GET /rest/api/3/search And I want to filter issues by their priority, but using this URL does not work. https://MyJira.atlassian.net/rest/api/2/search??jql=priority="Low" I am really new, so sorry if my question is very basic. I…
Tindona
  • 430
  • 1
  • 16
1
vote
1 answer

Jira error when creating issue in node.js

The following code gives me the error "Invalid request payload. Refer to the REST API documentation and try again" when is executed and I dont know where the error is const bodyData = `"fields": { "summary": "Summit 2019 is awesome!", …
1
vote
0 answers

Gitlab - Jira integration: transitions to "Done" do not work

I would like to understand why the following Gitlab <-> Jira integration does not work. What I mean by "not working" is that tickets in "In Progress" or "In Review" state do no transition to "Done" when Gitlab Merge request referencing them (using…
1
vote
2 answers

Token for Jira REST API

I don't have much experience with REST. Trying to extract some stats from my company Jira, and don't want to use JQL. The question is, the token that I need to make the API calls, do I get it from my company's Jira or do I need to create an account…
user515232
  • 211
  • 1
  • 5
1
vote
0 answers

Simple REST endpoint and fragment not working Script function failed on issue: issue: PIE-68635, user: mouh, fieldId: __init__, file:

I am using a really simple REST endpoint and its corresponding fragment and it is not working for me.  The fragment I created is the following:  Here is the error that I get printed in the log:  2022-08-17 00:00:40,405+0200…
1
vote
0 answers

Cannot create a fragment with a corresponding REST endpoint in Jira

I am trying to create a custom web item that navigates to a link when clicking on it. Here is a screenshot of the way in which I have created the custom web item:  I have also defined a REST endpoint as you can see in the following…
1
vote
2 answers

JQLParseException: Cannot execute JQL query in ScriptRunner to print number of issues having a specific value for the summary field

I am trying to execute some code in script runner to know how many issues have a certain value as a summary. The code should be super easy and straightforward but I am running into a JQLParseException. I am looking for all issues with value "aa" for…
1
vote
0 answers

Jira JQL to find issues which linked with Test Case through Adaptavist (Zephyr Scale) plugin

I have Jira issuetype requirement and test cases which connected with requirement by Adaptavist (Zephyr Scale) plugin. I see in the Requirement issue the block "Tracebility" and list of testcases. Please help: How to write JQL to find requirement…
1 2 3
99
100