Hello Everyone,
module = "Deals";projectDetail = invokeurl[url :projectsAPIEndPoint + "/api/v3/portal/" + portalId + "/projects/" + projectId + "/crm/" + module.toLowerCase()type :GETconnection:"xxxxxxxxx"];for each client_company in projectDetail.get(module.toLowerCase()){CrmDealId = client_company.get("id");notesMap = Map();notesMap.put("Parent_Id", CrmDealId);notesMap.put("Note_Title", NoteTitle);notesMap.put("Note_Content", NoteDescription);notesMap.put("$se_module", module);response = zoho.crm.createRecord("Notes",notesMap,Map(),"xxxxxxxxx");info response;}return "success";
Creating custom functions in Zoho Projects is straightforward and well-documented. Zoho provides a range of built-in functions that you can use as a starting point, and you can also easily define your own functions using Zoho's scripting language, Deluge. Give it a try and see how it can save your time and boost your productivity!
Watch this space for more such custom function codes.