copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Run JQL search query using Jira Cloud REST API Summary You can use Jira Cloud's REST API to return work items based on a JQL search query In turn, we can use additional methods to return Jira work items using the API, including: Performing a cURL request Creating an automation rule to Send a web request In all cases, we'll use the Search for issues using JQL (GET) API endpoint
The Jira Cloud platform REST API - Atlassian The Jira REST API enables you to interact with Jira programmatically Use this API to build apps, script interactions with Jira, or develop any other type of integration This page documents the REST resources available in Jira Cloud, including the HTTP response codes and example requests and responses
Deprecation of JQL search endpoints ( rest api 3 search ) Thanks for the answer, but will the same endpoint in the API version 2 also be replaced ? I'm gauging how urgent some refactoring is, so if the endpoint has a >6 month lifespan left regardless of API version, I'll need to get to it sooner rather than later !
JQL working with endpoint rest api 3 search does not work with . . . Expected Results Same JQL to work with new endpoint Search for issues using JQL enhanced search (POST) Actual Results It returns empty result Workaround We can change the JQL as below to get it working with the new endpoint Search for issues using JQL enhanced search (POST)
Rest api 3 search? - Jira Development - The Atlassian Developer Community To call the changelog api, I need to know issue keys first I don’t want to go through the full issue dataset cause I’ll have to expand changelog in order to get that history count I’ve done it, and it takes 8-9 hours in this case If there is a simple jql in search api to do that, that will save us majority of the time
JQL Search endpoints API changes - Atlassian Community Hi, Do you intend to have a new versions for search JQL changes in jira-python module? if so which jira-python module version will support the following changes in API? Deprecated Endpoint New Endpoint GET rest api 3 search → The Jira Cloud platform REST API https: developer atlassian co
Jira API returns empty list when trying to search for issues Change the JQL and test against other project keys to see if other projects are affected Try the ‘classic’ Search for Issues using JQL endpoint to see if other endpoints return the issues for the project using the same project key
Optimizing Data Retrieval with rest api 3 search jql Pagination Previously, using " rest api 3 search", I followed this approach to efficiently retrieve all issues: Fetch the total number of issues Calculate the number of required requests Use the startAt parameter to control pagination Execute multiple batch requests concurrently and resolve them together, significantly improving performance