How to use maxResults and startAt correctly in request to jira

0

I have the following request to the jira:

https://jira.spring.io/rest/api/latest/search?jql=project=SPR+and+issuetype=Bug

But it always returns only the most recent 50, how can I change to receive more than 50 and also set an initial value?

I know that maxResults and startAt were used but I could not place them in the request without giving error.

    
asked by anonymous 22.09.2017 / 14:09

1 answer

0

Can solve the problem as follows:

https://jira.spring.io/rest/api/2/search?jql=project=SPR+and+issuetype=Bug&maxResults=-1&startAt=0 
    
22.09.2017 / 15:36