I am using the RingCentral.net C CallLog API with admin account. I do get call logs for all users but only getting 100 rows. I tried different dates in datefrom param. I do see data for the different dates but only 100 rows each time. is there page setting that will give me all data? Do i need to loop through the pages to get all data for the 90 days? There is no mention in the documentation other than to set dateFrom. Thanks
Here's the code
RestClient rc = new RestClient("client_id", "client_secret", true);
await rc.Authorize("Admin phone", "admin ext id", "password");
var parameters = new ReadCompanyCallLogParameters();
parameters.view = "Detailed";
parameters.dateFrom = "2019-06-01T00:00:00.000Z";
parameters.dateTo = "2019-06-10T00:00:00.000Z";
var resp = await rc.Restapi().Account().CallLog().List(parameters);
string json = JsonConvert.SerializeObject(resp, Formatting.Indented);
var exportFileName = @"<server>RingCentralProdCallLog" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".json";
File.WriteAllText(exportFileName, json);