If I mass update a date/time field in the CRM and trigger a workflow based on that time, will updaterecord() trigger further workflows if I pass "trigger"{["workflow]} in the options map?
filename = "" + fname + " " + lname + "";
rez = zoho.workdrive.createFolder(filename,"dtosffcc9acdc23d644558d260cbe1a37aca5","attach_workdrive");
data = rez.get("data");
conWD = data.get("id");
attributes = data.get("attributes");
conWDurl = attributes.get("download_url");
update = Map();
update.put("zohoworkdriveforcrm__Workdrive_Folder_ID",conWD);
update.put("zohoworkdriveforcrm__Workdrive_Folder_URL",conWDurl);
if(formId == null || formId == "")
{
update.put("Contact_Form_Id",conId.toText());
}
info update;
rex = zoho.crm.updateRecord("Contacts",conId,update,{"trigger":{"workflow"}},"writer_crm");// I need this to trigger other workflows.