Am I able to use integration tasks in environments?
I have a lot of integration tasks in my production environment, and I want to fix some functions, but not mess with the live production environment data. I know the API has a param that's called environment and I can choose which, but am I able to do that with integration tasks? How would I be able to use that param? Here's a sample of the code:
params = Map();
params.put("environment","development");
newEmployee = Map();
newEmployee.put("Employee_Name","New Friend");
addToDevelopment = zoho.creator.createRecord(appOwner,appName,"Add_Employee",newEmployee,params,"developmentcreatoraas");