Please have a look at my code and guide me where I have gone wrong, I juts cannot get the field to update in the form "Expiry Date" even though it says the codes executed fine.
records = zoho.crm.getRecordById("Contracts", 4994407000000384299);
info records;
term = records.get('Term');
info term;
Expiry_Date = ifnull (records.get("Inception_Date"),'').toDate().addMonth(term);
info Expiry_Date;
mp = Map();
mp.put( "Expiry Date", Expiry_Date.toDate());
update = zoho.crm.updateRecord("Contracts",4994407000000384299 ,mp);
Info update ;