Hi,
My goal is to send *limited info* about all issues that I currently have in Jira (about 1500 tickets) to 3rd party service via HTTP request.
I found that "Lookup issues" + "Send web request" is a great solution for me because I need a good level of security for this - because I send in a request only limited info about my issues and does not provide any other info related to Jira (for example API Token or something similar).
But I faced an issue that "Lookup issues" provide info about up to 100 issues using JQL.
And it is a big problem because I have about 1500 tickets.
Maybe someone faced with a similar question and find a good solution
Hi, somebody at my work needed to limit how many issues he ran his automation on, and ended up using the limitedResults() function from GO! JQL: Essential JQL Functions.
I think the problem though is that in your case, you need to do the first 100, and then the next 100, and then the next. (In his case, the automation was making an edit that would then remove those issues from his query, so it automatically reduced the number on every run.)
Because underlying issue IDs are numbered sequentially, I was thinking you might be able to look at your issue IDs and do something clever like:
id > 12000 AND id < 12099
But Jira doesn't like that.
Hum.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.