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

Adding Notes in a Timeline or Gannt

I'm trying to plan and tracking one project with Jira/Asana/Clickup but I can't find one easy thing that I think It should be essential (just me apparently). During a project things happens, for example an employee might be on vacation, a bug is…
1
vote
0 answers

How to query a JIRA ISSUE from CTO Domain

We are currently hosted in CEDT domain of JIRA and i have created a simple filter to view issues assigned to particular resources. However while in CEDT domain, i need to also view issues assigned to a resource for another project which is hosted in…
Bragger
  • 13
  • 4
1
vote
1 answer

Scriptrunner Create issue and assign to existing epic

While creating a new issue using scriptrunner, I would like to assign it an existing epic. it seems the issue.setCustomFieldValue(epicLinkCustomField) is not working. any help would be greatly appreciated. everything else works fine, im able to set…
Mikeshift
  • 45
  • 5
1
vote
0 answers

How to find the third-party libraries which use Jira as bug tracking systems?

I want to find some third party libraries which use jira as bug tracking system. I need to analyse the bug reports. But I can not find the propor projects in jira now.
谈尤帅
  • 13
  • 2
1
vote
1 answer

Azure Logic App get all Jira ticket instead of one

Is there a way to get group of ticket on Azure Logic App instead of getting only one by Key? I need to get all ticket created over a month and then use a loop to check which one is contain the needed data to add comment on it.
1
vote
1 answer

Python 3 - Pycharm - Jira REST API - Error: module 'http' has no attribute 'client'

hope you're all fine You'll see, I'm using PyCharm 2022.3 (Community Edition) with Python 3.9.7, and I'm trying to execute the following code: #!/usr/bin/env python3 # Required libraries for the program. import requests as req from requests.auth…
1
vote
1 answer

Extract data from table on email and send it to jira ticket using logic appp

So it is the first time fo me to work with logic app or any technology that have the same idea. I need to use email trigger when eamil is received then extract data to send it to jira ticket as table. example of the html table from email…
1
vote
0 answers

Forge app for Jira can’t run because ‘experiment is not enabled’

I am a very beginner in Forge and JS, trying to run my app but can’t do because of that error: File was processed with these loaders: * ../tunnel/node_modules/babel-loader/lib/index.js You may need an additional loader to handle the result of these…
Qwerty
  • 19
  • 4
1
vote
0 answers

Fastapi webservice responds with 422 response when parsing payload from Jira webhook

I'm building out an automated process, one part involves firing a webhook using Jira Automation when a Jira Service Management ticket is created. On creation a Jira automation rule is in place to send a webhook to a fastapi webservice I have…
kybosha
  • 13
  • 3
1
vote
0 answers

Github Actions: get stacktrace from a failed job

I'm wondering if this is possible. I've done some googling, with various different wordings. I've been asked to add to a job that creates a jira ticket when a previous step fails (the previous step is a docker build command). At the moment the jira…
Donagh
  • 89
  • 2
  • 10
1
vote
1 answer

Unable to create jira issue in python

from jira import JIRA jira = JIRA(basic_auth=("soubhagyakumar666@gmail.com", "9uQ7ll78jq7AmY3Xh5ghF9A9"), options={"server": "https://soubhagyapradhan.atlassian.net"}) Jira integration code data = { "project": { "key": "TEST" }, …
soubhagya
  • 788
  • 2
  • 12
  • 37
1
vote
0 answers

JIRA API to List Jira users added from date

I want to list all the users who were added from date.I have a code like this from jira import JIRA jira = JIRA('', basic_auth=('username', 'password')) users = jira.search_users(".") for user in users: …
Panda
  • 513
  • 2
  • 11
1
vote
2 answers

kiwi tcms integration woth JIRA

I try to connect my Kiwi TCMS to JIRA server, but when i try to report a bug to jira it open always same project. How to define link betwen projects in Kiwi TCMS and JIRA server? Where can i configure that parameters? I only add jira to bugtracker…
1
vote
1 answer

i am getting error "no schemaLocation attribute in import" when using Python client accessing JIRA via SOAP

here is the sample code : #!/usr/bin/env python # Sample Python client accessing JIRA via SOAP. By default, accesses # http://jira.atlassian.com with a public account. Methods requiring # more than basic user-level access are commented out. Change…
kamal
  • 9,637
  • 30
  • 101
  • 168
1
vote
0 answers

JIRA/JQL exclude by specific comment?

I can easily find issues with a specific comment which might end up as 6 out of 30 items. But I want to exclude each item containing a specific text string to get the remaining items. (I'm NOT admin in our system, just a regular user) Can…