This article explains how to view more than 50 Jira issues in a JSON macro using maxResults.
Instructions
By default, the JIRA REST API shows 50 issues. In order to show more than 50 issues, you need to use &maxResults in the URL. Here is the example for reference:
Please find the example below where the maxResults for the URL is given as 100
<Jira URL>/rest/api/2/searchjql=project=<projectname>&os_username=xxxx&os_password=xxxx&maxResults=100
If you want to view issues more than 50 Jira issues in JSON macro, you can use &maxResults inside of the URL of JSON data and get the result. Please check the below screenshot for reference:
Please find the example above where the maxResults for the JSON macro is given as 100 inside the URL of JSON data which previews 100 issues of a given project.
The maximum number of maxResults is 1000.