Category: API
Summary: The endpoint to fetch all reporting exports for a user will begin imposing pagination. What this means is that if you do a GET to fetch all exports without the pageSize or pageNumber query parameters, and there are more than 25, only the first 25 will be returned.
Context: It is possible for a user to generate so many exports that it becomes more intensive on the server to fetch all exports, as well as for the client to display all exports. This change will provide a more smooth and timely experience.
Impact: Users can supply a pageSize and pageNumber value to page through the list of exports. Standard page sizes are 25, 50, and 100. Users will be able to make a GET call to /api/v2/analytics/reporting/exports?pageSize=25&pageNumber=3 for example, to get the 3rd page of exports. Consumers can also see the pageCount in the response, which represents the total number of pages.
Date of Change: 6/13/2020
Impacted APIs: Reporting Exports -- GET /api/v2/analyticsreporting/exports
https://developer.mypurecloud.com/api/rest/v2/analytics/#get-api-v2-analytics-reporting-exports