Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

how can fetch more than 100 Jira cloud Ticket via Alteryx Download tool?

gowriangry
5 - Atom

 

how can fetch more than 100 Jira cloud Ticket via Alteryx Download tool?

Can extend the record limit? I want to download all the issues.

5 REPLIES 5
JamesCharnley
13 - Pulsar

@gowriangry  It doesn't sound like something that the download tool is limiting, more likely it's how to deal with the API pagination. A brief look at the Jira cloud platform REST API documentation suggests there's a startAt and maxResults pagination parameters that you should be able to alter to get different records.

gowriangry
5 - Atom

@JamesCharnley

 I set value in Startat 1 and maxresult  5000. But in download tool automatically change maxresult100

gowriangry_0-1676629023917.png

 

JamesCharnley
13 - Pulsar

@gowriangry ah ok! I've had another look over the documentation and it says ' if the returned value of maxResults is less than the requested value, the returned value is the maximum.' So I guess you'll just need one call per 100 results in this instance, each one with a startAt value 100 higher than the last.

gowriangry
5 - Atom

James Charnley

Jira able to fetch 5000 tickets in one call. Jira cloud only show 100 tickets. 

I used Generate Rows and macro to fetch whole tickets. But that option workflow run almost 17-25mins to fetch all tickets. that's why i try to fetch at least 5000 ticket in single run. 

 

JamesCharnley
13 - Pulsar

@gowriangry  sounds like you pretty much have it sorted to the limits of the API. The cloud documentation uses 1000 as the example of a large number to find the maximum, so my guess in this instance is there isn't a way to do it faster!

Labels
Top Solution Authors