Hi there,
I'm having issues pulling date data and auto-populating my Creator fields with it. I'm successful in pulling other types of date. Here's the code I'm currently using to pull data:
crmResponse = zoho.crm.getRelatedRecords("Contacts","Contacts",input.Customer_name_ID.toString());
c=crmResponse.get(0);
Email=c.get("Email");
Account_number=c.get("Customer number");
Address=c.get("Address");
Address_cont_d=c.get("Address cont'd");
City=c.get("City");
State=c.get("State");
Mobile=c.get("Mobile");
Home_phone=c.get("Home phone");
Postal_code=c.get("Zip code");
Number_of_call_handlers=c.get("Number of coordinators");
However, the moment I add a code line for a date, for example, Order_date = c.get("Project start date"), it returns the following error: Variable Order_date is already defined of data type TIMESTAMP but trying to update STRING data type.
Oh, the same goes for currency fields (just with its own unique error message).
What am I missing here? What's the code look like to pull data?
Thanks in advance for your assistance.
Xavier