Jira has announced changes to their REST API pagination model. The current startAt parameter is being deprecated, and a new token-based pagination method (nextPageToken) must be used instead. Our existing Jira integration relies on startAt for paging through query results. Without updating, future API calls may fail or return incomplete data once startAt is removed from Jira’s supported parameters.
https://developer.atlassian.com/changelog/#CHANGE-2046
Steps to Reproduce:
Set up an automation to Jira SaaS that will trigger pagination
Run the automation
Review the logs
Expected Results:
Connector should adopt the new pagination strategy:
nextPageToken
in request payload or query.nextPageToken
from each API response and use it in subsequent calls.startAt
.Actual Results:
Connector continues to rely on startAt
. Depending on endpoint/version, this might still return partial results—but behavior is inconsistent and unsupported going forward.
All ConnectAll versions prior to 3.9.0.3
DE175040
Upgrade to a version of ConnectALL 3.9.0.3 or higher