Debugging serializing/deserializing using Zoho 2.0 Wrapper

Debugging serializing/deserializing using Zoho 2.0 Wrapper

In the NewtonsoftJsonSerializer class, place breakpoints in the catch statements of the Serialize and Deserialize methods
    • Related Articles

    • Adding files (attachments) to the Send Mail API in Zoho Deluge

      files = opportunity.getJSON("File_1"); if(files != null) { for each file in files { fileMap = Map(); fileId = file.getJSON("File_Id__s"); fileMap.put("id",fileId); attachmentsList.add(fileMap); } } emailDataMap.put("attachments",attachmentsList); ...
    • Super Admin Cutover SOP

      When doing a cutover from one Zoho super admin to another, here are some main things to consider so you do not break any integrations that are set up. Overview When doing a super admin cutover the best practice is to individually change the super ...
    • NPoco create and open connection

      using (SqlConnection connection = new SqlConnection(conString))             using (IDatabase db = new Database(connection))             {                 connection.Open();                 // Do DB Operation here             } Use this snippet to ...
    • Sharepoint - Modify items permissions in Workflow

      http://timwalwyn.com/2017/10/17/modify-item-permissions-on-sharepoint-online-using-sharepoint-designer-and-rest-api/