Pulling conversation stats for the WFM dashboard using GET /api/v2/analytics/conversations/details/query. The docs mention pageSize, pageNumber, and pageCount in the paging object, but it’s not clear how they interact. I set pageSize to 200, which is the max, but the response only has 50 items. The pageCount field says 1, even though I know there are more records.
Here is the snippet I’m using:
const response = await api.post('/api/v2/analytics/conversations/details/query', body);
Is pageNumber 0-based or 1-based? And does pageCount update automatically or do I need to calculate it? The nextLink is null, which is weird.