Hi everyone,
I’m working with Zoho Creator and using zoho.creator.createRecord and updateRecords APIs through a connection.
I have configured a connection that supports all three environments — Development, Stage, and Production. However, I’ve noticed that even when my script runs in the Development environment, the data is being pushed to the Production environment.
I’d like to understand:
Is there a way to dynamically control or switch the target environment (Development / Stage / Production) within Deluge when using a single connection?
Or does the connection always execute based on the environment it was authorized with, regardless of where the script is triggered?
If dynamic switching is not supported, what is the recommended best practice to safely manage API calls across multiple environments?
Thanks in advance!
response = zoho.creator.updateRecords(
"<owner_name>",
"<app_link_name>",
"<report_link_name>",
"<criteria>",
<data_map>,
<optional_params_map>,
"<connection_name>"
);