How can I fetch external number CALL & SMS log in RingCentral API? C# & RingCentral.Net
I am using a test account as a Developer admin
I am using the below code to get the call logs for all users
Now I am facing an issue for the below case
I am doing text(SMS) & call the phone number which is outside the ring central
I am using that number as my private number
But I am not getting log for SMS and Call to that end number which I am using from my cell phone for calling, message, and any other purpose
//Get all call logs in single list variables
ReadCompanyCallLogParameters readCompanyCallLogParameters = new ReadCompanyCallLogParameters
{
direction = new[] { "Inbound", "Outbound" },
type = new[] { "Voice" },
view = "Simple",
dateFrom = dateFrom,
dateTo = dateTo,
};
_logger.LogDebug("GetAllCallLogs In");
AccountCallLogResponse callList = await rc.Restapi().Account(accountId).CallLog().List(readCompanyCallLogParameters);