I connected External JIRA via RestAPI with my EazyBI Board. due to recent changes on Jira end the pagination is not working.
Previously : Jira RESTAPI has startAt and maxResults Parameters that i have directly used in my Pagination parameters with the options of Offset and limit parameter
Now : Jira RESTAPI does not have startAt Option it was replaced by parameter “nextPageToken”. This parameter has dynamic values so not sure how to pass these values to fetch the data while connecting from EazyBI
Add the new pagination parameter to the request nextPageToken: {{next_page}}.
Remove previous startAt parameter.
Set maxResults value to a constant, for example, maxResults: 200. The API allows returning up to 5000 records per page. However, please check the maximum for your particular import as it’s dynamically calculated, and for larger issue data, it could be reduced.
Add fields parameter: The new API only returns issue IDs by default, so add a fields parameter with a value ["*all"] to get all fields.