How to use maxResults and startAt correctly in jira request

Asked

Viewed 24 times

0

I have the following requisition to jira:

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

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

I know it’s used maxResults and startAt but I could not put them in the request without error.

1 answer

0


Be able to solve the problem as follows:

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.