0
votes

I want to preform a search using the Jira REST API and a JQL query but I don't want my results to be limited. So if there are 100 issues, 100 issues will appear on the result, if there are x issues, x issues will appear on the result.

How do I do this?

For example with this query:

https://"your_jira_gome"/rest/api/2/search?jql=project = "A"
1

1 Answers

1
votes

According to JIRA REST API Docs there's a maxResults URL parameter:

maxResults

int

the maximum number of issues to return (defaults to 50). The maximum allowable value is dictated by the JIRA property 'jira.search.views.default.max'. If you specify a value that is higher than this number, your search results will be truncated.