ZCRMModule moduleInstance = ZCRMModule.GetInstance("Products");
foreach (ZCRMRecord record in DealRecords)
{
APIResponse response = moduleIns.GetRecord(record EntityId); I can get product record 5 times and then it freezes here and waiting for response, for a long time and then says "Request timeout".
ZCRMRecord record = (ZCRMRecord)response.Data;
// rest is reading record values
// string Product_Name = record.Data["Product_Name"].ToString();
}