... lead record
r_LeadDetails = zoho.crm.getRecordById("Leads",p_LeadID);
//
// get created time (no need to check if null?)
v_LeadCreatedTime = r_LeadDetails.get("Created_Time");
//
// convert to time ...
... timezone, add 10 minutes, re-assemble it in a format that CRM likes, and update the field:
//
// parse date into yyyy-MM-dd (using subString - reliable)
v_LeadCreatedDate = r_LeadDetails.get("Created_Time").subString(0,4) ...
... through the record variable
r_LeadDetails = Leads[ID == 1234567890];
r_LeadDetails..insert( );
Events I have used this task which contradicts documentation:
In a custom function
In an Action ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.