Trying to fetch conversation reports via GET /api/v2/analytics/conversations/queries, but the paging object is confusing. I set pageSize to 100 and pageNumber to 2, yet the returned data looks identical to page 1. Here’s the payload I’m sending:
{
“pageSize”: 100,
“pageNumber”: 2,
“dateFrom”: “2023-10-01”,
“dateTo”: “2023-10-31”
}
The response includes a pageCount of 5, but the actual items don’t shift. Am I misunderstanding how pageNumber works here?