We’re hitting the Analytics API to pull conversation data for our New Relic custom events, but the pageSize parameter in the paging object isn’t limiting the results as expected. We’re getting the full dataset instead of the specified chunk.
GET /api/v2/analytics/conversations/details/query
{
"paging": {
"pageSize": 100,
"pageNumber": 1
},
"dateFrom": "2023-10-01T00:00:00Z",
"dateTo": "2023-10-02T00:00:00Z"
}
The response returns 500 items. The pageCount in the response is 5, which suggests the server knows about the paging, but the actual entities array is bloated. We’ve checked the docs, and the structure looks right. Is there a known issue with how the paging object is parsed in this endpoint, or are we missing a header?