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 bash curl returns bad request on POST to PR comments

I am tearing my hair out on this. I am attempting the following: curl -S https/api.bitbucket.org/2.0/repositories/etc/etc/pullrequests/comments \ -u username:pw --request POST --header 'Content-Type: application/json' \ -d '{"content": {"text":…
JayDee
  • 45
  • 8
1
vote
0 answers

I am trying to understand what is the advantage of using multiple Workspaces vs One workspace with multiple projects in Atlassian stack?

I am trying to organize our company's Atlassian stack. We use Jira, Confluence, and Bitbucket. I am trying to understand what is the advantage of using multiple Workspaces vs One workspace with multiple projects. I would like to have the below…
1
vote
1 answer

How can I search two filters of propertyQuery in JIRA API search

I tried with this link : https://path.atlassian.net/rest/api/3/project/search?propertyQuery=%5Btags%5D.archived%3Dyes&propertyQuery=%5Bmembership%5D.index.63f330776bbd662d73f889af%3Dyes&properties=tags%2Cmembership&startAt=0&status=live, but I only…
1
vote
1 answer

"requests.exceptions.HTTPError: 400 Client Error" creating a Jira issue when using the package atlassian

I have this code on python 3.8: from atlassian import Jira jira = Jira( url='http://jira.mydomain.com/', username='login', password='password') summary = 'Test summary' description = 'Test description' current_date =…
Max Chupin
  • 11
  • 3
1
vote
0 answers

Using JQL to check issues monthly & clone those with specific Labels (A, B, C, D) that have a Start Date of 30, 90, 180, or 365 days ago, respectively

I am working to build an automation in JIRA that will allow the automation to check, on a monthly basis, that stories meeting the criteria (Label A AND Start date 30 days ago; Label B AND Start date 60 days ago; Label C AND Start date 180 days ago;…
1
vote
0 answers

Empty Array returned for Issue Links by Jira Cloud REST APIs

In Jira it's possible to link issues with relationships such as "blocked", "blocked by", etc. While fetching one or multiple issues using Jira Cloud REST APIs (v3), within the object for each issue in the response, the IDs of the issue links should…
HEU
  • 11
  • 1
  • 4
1
vote
0 answers

Azure Devops, query based query

has anybody found a capability of filtering / querying by a query in azure devops which exists in Jira, is very handy ? In Jira it works as follows: you create a query like - show me all the stories, or whatever - this will be filter=12345 after…
1
vote
1 answer

Unable to download SVG attachments from atlassian ticket

I am using Atlassian Jira to generate issues on different tickets. Recently, I am facing a problem, the tickets which contains attachments of SVG file is not downloading. I can preview the attachments. Upon right clicking on the preview, the menu…
Hamid
  • 25
  • 6
1
vote
1 answer

Jira with Github Integration

Is there any option to have in a pull request on Github the actual Jira task url? Basically now we can navigate from Jira to Github's pull request but from Github there's no option to navigate to the actual Jira task
Markus Hayner
  • 2,869
  • 2
  • 28
  • 60
1
vote
1 answer

Reference Jira Requirements in Go tests

We are using test automation in Go We are using XRay to manage our tests in Jira In our CI/CD pipeline, we are running gotestsum to create JUnit test output in a results.xml file In our CI/CD pipeline we are uploading the results.xml via XRay…
GermanAndy
  • 37
  • 9
1
vote
1 answer

How to extract a single value from a JIRA API request?

You can use the JIRA API to make a JQL query. In my case I want to get information about a specific issue which I query as follows: https:///rest/api/latest/search?jql=issue=MYPROJECT-123 but this query returns all available…
Alex
  • 41,580
  • 88
  • 260
  • 469
1
vote
1 answer

DataDog Jira Integration Configuration JSON

We currently are using DataDog as our alert monitoring and Jira for ticket creation. Recently, we've been tasked to automatically create a Jira ticket when a DD monitor triggers an event. Currently, it's set up to just hit Slack but we want a ticket…
balexander
  • 23,131
  • 14
  • 45
  • 68
1
vote
1 answer

Trying to call an external endpoint inside a jira issue panel app

In my code, when I try to call an external endpoint from the Jira issue panel app, I get a log "try" and the fetch doesn't happen. I would appreciate it, if someone could help me. import ForgeUI, { IssuePanel, useProductContext, useEffect, }…
Ajay poly
  • 73
  • 6
1
vote
1 answer

Get users' email with Jira Python Library

I've been trying to get the email of a Jira user other than my own with the Python3 Jira library, but couldn't do it. It either gives me an error, saying I don't have enough permissions to get it, or only returns me simple information, like display…
Ranieri
  • 11
  • 3
1
vote
3 answers

Automate JIRA user creation using Groovy Script

We are continuously receiving user creation/removal in our JIRA instance as the team is growing. I am looking for possible options to automate this using groovy script. Currently, we are having a separate project in JIRA handling these requests.…
CH BHARATH KUMAR
  • 111
  • 1
  • 11