Hi,
I'm using API 3 to query data from Jira Service Management.
https://xxxxxxxx.atlassian.net/rest/api/3/search?jql=project=projectName&startAt=100&maxResults=100
My understating was when I say StartAt = 100 that would mean its key 100 onwards to next 100 but that's not the case...
Is there a way I can query this sequential?
Thanks
As Joseph mentioned startAt is used for pagination and it has no relation with issue key. As a workaround you can sort issues by key using jql.
https://....atlassian.net/rest/api/3/
search?jql=project%3Dproject%20order%20by%20key&startAt=100&maxResults=100
thanks @Mehmet A _Bloompeak_ so as I move to next page my startAt will become 200... and so on...
This could be Atlassian's question.. 'Order By' are usually resource intensive operations ... so is should we go for it... In my scenario - its a big pay load.. 100K records!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@S -
Based on my understanding, the "startAt" parameter means the 1st 100 rows of your search query returns. It is not associated with issue key number.
Hope this helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Infrastructure Applications Team
Viasat Inc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@S -
If my answer assisted you on your resolution, please click Accept answer when you have a chance.
Best, Joseph
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.