It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm developing a desktop app using JIRA Cloud API. I want to get all issues but it's limited to 1000 max per request.
I tried to use while function with the statement; if the total number of issues if bigger than retrieved issues, then repeat the REST request. See the code below.
But unfortunately, this did not work. In fact, it crashed.
client.get(`${host}/rest/api/2/search?jql=assignee=currentuser()&startAt=0&maxResults=1000`, authParams, function(data, response){
issues = data.issues;
total = data.total;
while(issues.length < total){
client.get(`${host}/rest/api/2/search?jql=assignee=currentuser()&startAt=${issues.length + 1}&maxResults=1000`, authParams, function(data, response){
issues = issues.concat(data.issues);
});
}
});
Can anyone help? Thanks!
Hi Bhakti
It looks like you're on the right track, but you need a minor change :
Your first call gets the first 1000 issues (0 - 999), which should work
Within the while, I think issues.length is the total number of available issues, not the number of issues returned from the first call. Let's say you have 1600 issues, you're telling it to start at 1601 (instead of 1000), which causes the crash
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.