Skip to main content
Question

C# Calllog API return rows limited

  • July 12, 2019
  • 1 reply
  • 302 views

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);


1 reply

PhongVu
Community Manager
Forum|alt.badge.img
  • Community Manager
  • 2312 replies
  • July 17, 2019

You can set the perPage query parameter to the number of rows you want to read. The max number is 1000. Then you can use the paging from the returned response to read next or previous pages.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings