Skip to main content

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

Hi,

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

Reply