This article explains how to view more than 50 Jira issues in a JSON macro using maxResults.
Instructions
By defaultIn the Advanced Table for Confluence app, the JIRA REST Jira Rest API shows 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 below 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 It needs to be used inside the URL of JSON data and get the result. Please check the below screenshot for reference:
Please find In the above example above where the maxResults for the JSON macro is , maxResults is given as 100 inside the URL of JSON data which . It previews 100 issues of a the given project. You can use any number, which is greater than 50 to show those many records through the Jira Rest API.
Info |
---|
The maximum number which can be used for maxResults is 1000. |
...