Hi,As a rule, any command line options available for node, can be set as the environment variable NODE_OPTIONS (each option is space separated). In this case, in your action code, you can set it as:process.env.NODE_OPTIONS = "--tls-min-v1.0"... right before your api call. Unset it after so you won'...