I'm trying to make this API call:
https://mycompany.zendesk.com/api/services/jira/links
Recently, we crossed 1000 records and the call seems to be limited to 1000 records.
I've tried to page using the following parameter, "page=2" but it always returns the first 1000 records. Any guidance on how to get the rest of the records would be appreciated.
The pagination is a bit different than what you'd expect. You can go to the next page by specifying the next record you'd like to see. In our example, the last record is for ticket id 5000 so the url would be
https://{subdomain}.zendesk.com/api/v2/jira/links?page[after]=5000.Hope this helps!