Forum Discussion
Bhavin
9 years agoFormer Employee
“Does not support pipeline _parameters” - on the contrary Script snap does support pipeline params
It can be accessed in a script snap by $_pipeline_param_name
Example:
Python
data["pipelineparam"] = $_pipeline_param
JavaScript
new_data.pipelineparam = $_pipeline_param;
also documented over here - https://doc.snaplogic.com/wiki/display/SD/Parameters+and+Fields
nisars
8 years agoNew Contributor III
Thank you for your information on the syntax of pipeline parameters in the script! Couldn’t find this in the documentation.