As above and tried below scripts but I could not get the Products section work.
Creating Notes is perfectly fine....
mp1 = { "entityId" : crmAccountAdd.get("Id"), "Note Title" : "Product Code", "Note Content" : input.Product_Code };
resp = zoho.crm.create("Notes", mp1);
But creating Products didn't. It only creates new product in Products module...
mp2 = { "entityId" : crmAccountAdd.get("Id"), "Product Name" : "13/1300 Number", "Product Code" : input.Product_Code };
resp = zoho.crm.create("Products", mp2);
Would appreciate if someone could guide me on this please. Thanks in advance.