Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Fquiroga95
Contributor II
Contributor II

JIRA: API REST CONNECTOR

Hi, I am trying to create a REST connector in order to get all the issues from the JIRA site of my company.

I succesfully created a connection to get some information, like projects information:

https://......atlassian.net/rest/api/3/project/search

 

Or a certain Issue:

https://.....atlassian.net/rest/api/3/issue/PP-1116

And the authentication is my email and the api key generated in Jira site. 

 

The problem is that I only get 50 rows of data, startAT 0..

 

I would like to get all the issues, any idea how I can achieve that? Thanks in advance!

1 Reply
Jay_Brown
Support
Support

Hello @Fquiroga95 , thanks for posting!

Having a look at the Jira REST API reference there is a pagination section:
https://developer.atlassian.com/server/jira/platform/rest-apis/#pagination

Clients can use the startAtmaxResults, and total parameters to retrieve the desired number of results. Note that each API resource or method may have a different limit on the number of items returned, which means you can ask for more than you are given. The actual number of items returned is an implementation detail and this can be changed over time.

There is an example listed there that should help get this working as you intend.

I hope that helps!




To help users find verified answers, please don't forget to mark a correct resolution or answer to your problem or question as correct.