You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi,
I was trying pagination for below API,
GET https://temp.atlassian.net/rest/api/2/issuetype?maxResults=2&startAt=2
But, the API is not paginating the results and returning the entire issue types.
Hi Warren,
Yes, I am expecting 2 items and that too start from 1.
But it seems like there is no query parameter support for this API as per ,
https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-issuetype-get
Currently, I am getting entire set of records, in this case 54 issueTypes.
From your link, it says that there are no parameters with this, so it can't be paginated. You'll just have to pick up all the items in one go
It looks like Atlassian doesn't provide pagination on some endpoints of Jira Cloud REST API, like this case.
Since you're working with issue types, I noticed some weeks ago that the REST API retrieves the issue types created on projects that uses the template Agility.
You can create issue types on that project with the same name of existing ones on Jira. If you check the issue types pages on Jira, it won't show the issues types from the Agility project. Although, using the API we get issue types with duplicated names 🙂
I think Atlassian Support created an improvement about this one, I'm not sure if it's the correct behaviour...
Paulo Alves.