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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I am wondering if it it possible to paginate no query get requests, as in: /rest/align/api/2/Capabilities
I know for a query type request there is the maxresults and startat but that doesn't seem to work for the above.
Regards,
Jason
Hey Jason,
Check out this article: 10X: API 2.0 GET Usage and Filters
The top and skip commands can be chained together to offer proper pagination (covered later in this article). Default order by is on ID, so the first 10 epics would mean IDs 1 - 10.
Top
Return the first 10 Epics
Syntax
/Epics?$top=<value>
cURL example
/Epics?$top=10
Skip
Skip the first 521 epics and return all after
Syntax
/Epics?$skip=<value>
cURL example
/Epics?$skip=521
Unfortunately, there's no total results indication in Jira Align API yet, it just returns a list of results (max 100) without other metadata.
You can find a few more useful articles here: Jira Align 10X: API 2.0
Hope that helps :)
Thank you, it does help. "skip" is basically the same as "startat" from what I am understanding. I haven't fully tested but I think the main difference is that they would be off by 1 as in if you skip 100 you will start at 101 but if you startat 100 it will start at 100.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, may be another topic but Jira API would show the total results in the JSON output that doesn't seem to be the case with Align?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.