I'm trying to paginate through the results given in an API call, but regardless of what I set the StartAt condition to be, I always get the same results.
Here's an example:
API Call 1
Max Results - 50
Total - 350
StartAt - 0
Results
API Call 2
Max Results - 50
Total - 350
StartAt - 51
Results
What's going on here?
Hello,
How do you pass the stratAt parameter? It should be like this;
http://localhost:8080/jira/rest/api/2/search?startAt=70
For example, like this:
http://localhost:8080/jira/rest/api/2/search?jql=project%20%3D%20TEST&startAt=70
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If my answer helped you, kindly accept my answer. In this case other people with a similair question will be able to find this answer.
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.