
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!
- Subscribe by Topic:
-
Built-in Web Connectors
-
Data Prep
-
General Question
-
REST Connector
-
Web Connectors

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @Fq95 , 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 startAt
, maxResults
, 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!
