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

Get Jira's Tickets from JIRA REST API (version 3) using Postman

I'm trying to get data from JIRA REST API using this link: https://company.atlassian.net/rest/api/3/project/search I have also set my authorization parameters, and at my parameters I have set: KEY: jql | VALUE: project=EG But my return at postman is…
devinho
  • 404
  • 4
  • 18
1
vote
2 answers

Find Jira issues that I assigned to someone else

Is there a way I can use JQL to find all Jira issues, that I assigned to someone else? I see the assignee field, but I want to find a JQL, where I assigned a Jira issue to someone else other than me.
Ayusman
  • 8,509
  • 21
  • 79
  • 132
1
vote
0 answers

Sync github release notes to corresponding JIRA releases

I have a requirement to update JIRA release notes based on the Github release notes for the respective releases. Is there a way to edit JIRA release notes via the API?
Venkataraman
  • 151
  • 3
  • 10
1
vote
1 answer

Unable to update labels in a JIRA issue via JIRA REST API

I am sending the below PUT request to JIRA and unable to update the ticket. I am receiving 200 Http Status code with the ticket details JSON in response. However, this doesn't include the updated labels. curl --location --request PUT…
Uma Ilango
  • 968
  • 4
  • 16
  • 31
1
vote
1 answer

How to configure Sourcetree in Windows to automatically prepend the Jira Ticket ID in Commit messages

We are using SourceTree on Windows and Jira, and our rule is that the commit message always has to include the ticket ID from Jira, like HAD-4234. It feels like this is something that can be automated. Also, sometimes people are forgetting this. I…
Kira Resari
  • 1,718
  • 4
  • 19
  • 50
1
vote
0 answers

JQL for number of changed stasuses and created tasks by every user

I want to know how many statuses was changed and how many issues were created by every Jira user during the last six months. I wrote a JQL to get this information by single user: issuekey IN updatedBy(username "2021/12/19", "2022/06/19") AND creator…
Vladimir
  • 11
  • 2
1
vote
1 answer

How to to get the string value of custom field (single select) using listener in jira

I am a new learner of Jira and I have no experience with Script runner, And I trying to Write a script in ScriptRunner that gets initiated every time a user selects the “other” option. the "other" is one of four options which I added it under custom…
Asma
  • 11
  • 2
1
vote
0 answers

Table Grid addRows with Java API error in Jira

In Jira, I want to use addRows function with Java API in Scriptrunner, provided by Table Grid Next Generation plugin, but, I can't use beacuse of an error, which is not caused by syntaxis problem, since I take the example from the recomended code…
1
vote
1 answer

Unable to add attachments to a Jira issue using Power automate

For the internal communication without our organization we're trying to setup a power automate flow to get the data from a microsoft forms form and create a issue in jira. Using a Jira connector for Power-Automate we're able to create a issue but…
Collin
  • 914
  • 1
  • 9
  • 30
1
vote
0 answers

How to use Jira.CreateOAuthRestClient from C# code?

I have downloaded Atlassian SDK from visual studio nuget manager. There is a method public static Jira CreateOAuthRestClient(string url, string consumerKey, string consumerSecret, string oAuthAccessToken, string oAuthTokenSecret,…
1
vote
1 answer

Jira REST API not respecting 'query' param for versions

According to https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-project-versions/#api-group-project-versions the Jira v2 REST API supports a query param for project versions. Filter the results using a literal string. Versions…
Marcel Stör
  • 22,695
  • 19
  • 92
  • 198
1
vote
2 answers

How to link other JIRA dashboards to a central dashboard?

I have several dashboards in JIRA and want to create a central one where there is a filter or gadget that will display links to the other dashboards. Is this possible?
1
vote
1 answer

Jira API Set Pending Reason

Using the Jira API I'm trying to set a Pending Reason. I've dug out the following from the schema: "customfield_15072": { "required":false, "schema": { "type":"option", …
Richard Whitehouse
  • 679
  • 3
  • 14
  • 28
1
vote
1 answer

How to connect to JIRA api with 2fa enabled by organization?

I use self hosted Jira and I'm currently trying to connect to the Jira api using a python script (and the requests library) having 2fa enabled by my organization. I'm not an admin of the project and after creating a personal access token and using…
Liz
  • 11
  • 3
1
vote
2 answers

how can one create a link between two issues using python jira api

I am trying to automate some issue creation tasks that I need to perform.. Well, I don't like to click too much. I have managed to create issues by import jira jira_conn = jira.JIRA('url_to_server') issue_dict_a = dict( project={'key': 'ABC'}, …
stevosn
  • 463
  • 1
  • 5
  • 12
1 2 3
99
100