Hi, I am hitting the POST /v2/calls/extensive API route and I noticed that the response has the currentPageSize set to 50. I thought I remember this value being set to at least 100 previously. I also checked the GET /v2/users route and it is returning 100 records. Since I am using the /v2/calls/extensive route to import call data, is there a way this currentPageSize property can be increased so I hit the route less?
Request:
{
"cursor": null,
"filter": {
"fromDateTime": "2025-07-01T11:00:00Z",
"toDateTime": "2025-07-08T23:00:00Z"
},
"contentSelector": {
"exposedFields": {
"parties": true,
"content": {
"structure": true,
"topics": true,
"trackers": true,
"trackerOccurrences": true,
"pointsOfInterest": true,
"brief": true,
"outline": true,
"highlights": true,
"callOutcome": true,
"keyPoints": true
},
"interaction": {
"speakers": true,
"video": true,
"personInteractionStats": true,
"questions": true
},
"collaboration": {
"publicComments": true
},
"media": true
}
}
}
Response:
{
"requestId": "45m4dw3lk04b9wjs73q",
"records": {
"totalRecords": 12062,
"currentPageSize": 50,
"currentPageNumber": 0,
"cursor": "..."
},
"calls": :...]
}