1,515 questions
-1 votes
0 answers
26 views
Is it possible to implement “behaviors” such as conditionally hiding fields?
I’m developing a Forge app for Jira Cloud and I would like to reproduce something similar to Behaviours from ScriptRunner — for example, hide or show a custom field based on the value of another field,...
-3 votes
1 answer
68 views
Need help in setting assignee to tickets created in Jira using Python script [closed]
I'm automating some ticket creations in Jira. It's working fine for the most part, but its not being assigned to the correct user. All the tickets created get created with "unassigned" as ...
-2 votes
1 answer
81 views
Fetching all the issues of a project using Jira APIs
I need to fetch all the issues present in the project using the Jira APIs with some specific fields. Is there a way to do so without hitting the rate limit? It should be Hierarchical up to level 3 [...
0 votes
0 answers
47 views
Camel Kafka Connect Connector for Jira results in "no endpoint could be found"
For exchanging data between ServiceNow and Jira, I'd really like to use the according Camel Kafka Connect connectors. (I'm aware that there exist other connectors on the market as well like for ...
0 votes
1 answer
48 views
Reporting m to n Jira issue types
My problem is an m to n relationship between the issue types "Epic", "Story" and "Bug". So a Bug can be a child of a Story, or a child of an Epic. But in some cases it is ...
0 votes
0 answers
57 views
Can’t retrieve Jira projects via REST API with OAuth authentication
I’m working on integrating Jira with my service using OAuth. I created a Jira account and set up a few empty team-managed projects for testing, so my account is an administrator. I assigned myself all ...
0 votes
0 answers
66 views
Getting the Feature Link (Epic Link?) value using REST API JQL
Hey all I am trying to figure out how to get my Feature Link value from a JQL using the REST API. When I do: /rest/api/2/search?jql=sprint in openSprints() AND assignee="bob" I get a lot ...
0 votes
0 answers
41 views
SunCertPathBuilderException connecting to Jira Rest API
Hey all I am trying to connect to my local Jira server via Java but I get the error of: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid ...
0 votes
0 answers
61 views
Jira Webhook idempotency key
I am working on a project where i need to use jira webhook. i want to make sure duplicate webhook not hit my webhook endpoint. Do jira ensure that each webhooks endpoint hits will be unique. If not ...
0 votes
0 answers
107 views
Add Tests to Cycle taking too long with Jira Zephyr API
I created a test cycle in Jira using: POST jirabaseurl/rest/zapi/latest/cycle data = { "clonedCycleId": "", "name": "api-test-cycle", "...
0 votes
0 answers
52 views
Cannot read Jira issue custom field using Python Jira library
I'm using the Python Jira library jira 3.8.0 and I want to use it to evaluate the custom field customfield_10032 (story points assigned to a task issue). However, using jira.issue(), I cannot access ...
0 votes
0 answers
70 views
'Secret' field not working as expected in webhooks
Am using admin 'webhooks' in Jira. Create webhook form provides 'secret' field as shown below. When i receive payload i do not see that in response 'header' or 'footer'. I do not see any help in ...
1 vote
0 answers
126 views
Oauth2 access token is not working on Jira Software API endpoints
i have a oauth2.0 access token obtained via authentication flow and by using it am trying to access this 'get all boards' api. https://developer.atlassian.com/cloud/jira/software/rest/api-group-board/#...
0 votes
0 answers
38 views
Unable to see webhooks on Jira dashboard (created via Rest API) [PHP]
I was able to successfully create webhooks via api and was able to fetch from api as well. but am unable to see them in jira dashboard. please check my code here. <?php $webhooksbase = 'https:/...
0 votes
0 answers
56 views
Get current logged in user email for atlassian jira cloud
Not able to get current logged in user email for atlassian jira cloud Jira doesn't support openid protocol, so we can't do a oauth with openid and email scopes and decode the idToken JWT received ...