Not getting all data for extension I see others have asked this, but I haven't seen a response that works for me.I am trying to get all call log data for a specific extension in C#. I am using the code below.This return 3 records for 9/20/2021, however, the web portal shows 16 records for 9/20 on this date.Also, I noticed the api is returning one marked VOIP that does NOT show up from the web portal?Is this a problem with the account I am using for the API? Happy to send a code sample.var pageNum = 1
ReadCompanyCallLogParameters readCompanyCallLogParameters = new ReadCompanyCallLogParameters
{
extensionNumber = "3020",
dateFrom = "2021-09-19T00:00:00.000Z",
dateTo = "2021-09-22T00:00:00.000Z",
page = pageNum,
perPage = 1000,
};
r = await rc.Restapi().Account(accountId).CallLog().List(readCompanyCallLogParamet