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 issuesIn the Advanced Table for Confluence app, Jira Rest API displays 50 issues by default. 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 example below where the maxResults for the URL is given as 100:
Code Block |
---|
<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 Use &maxResults in the URL of JSON data and get the result field to retrieve the results. Please check the the screenshot 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 In this example, maxResults results in 100 issues. It previews 100 issues of a the given project. You can use any number greater than 50 to show those many records through Jira Rest API.
Info |
---|
The maximum number of maxResults can be limit for maxResults is 1000. |