Hello,
From Creator I have satisfactorily been able to create a CRM contact record, and assign a task to that person. However, I would also like to be able to set a 'Remind At' date for 3 days after the contact record has been created, to remind me to contact that person.
It's not clear if, or how, this can be done from the Creator API...because within CRM, the 'Remind At' field has, I guess, a number of sub-fields....here is the sample code that I am working with...
tomorrowDate = zoho.currentdate.addDay(1);
dayAfterTomorrowDate = zoho.currentdate.addDay(2);
info "Tomorrow and Day After " + tomorrowDate + dayAfterTomorrowDate;
taskInfo = {
"Subject": "Call this Person - registered on web recently",
"Send Notification Email": True,
"Description": "ASAP",
"Due Date": tomorrowDate,
"Status": "Open",
"CONTACTID": contactIDStr,
"Remind At": dayAfterTomorrowDate
};
theCrmResp = zoho.crm.create("Tasks", taskInfo);
Thanks,
Liam