Skip to main content
Question

Call logs ExtensionCallLogResponse to datatable

  • 31 August 2018
  • 1 reply
  • 152 views

Hello All,

I am using C# language and using the ringcentrals c# nuget package.

I am currently retuning Inbound call using:

ExtensionCallLogResponse callLogsInBound = await mainAccount.CallLog().List(new { dateFrom = monday.ToString("yyyy-MM-dd"), dateTo = monday.AddDays(5), view = "Detailed", direction = "Inbound" });  


I can also get the JSON string using:

string json = JsonConvert.SerializeObject(callLogsInBound, Formatting.Indented);  

How can I convert either the json string or the callLogsInBound to a Datatable?

Thanks,

KS

1 reply

Hi,

The callLogsInBound object is just a normal C# object.  So maybe you can google for "C# convert object to datatable" ?

Reply