I setup variable on path params but it just receive value from global variable, maybe because of same name with global but this need to fix
Hello, I’ve tested this and it’s working fine on my end. From your screenshot:
- The variable “shop” isn’t defined as a module variable—it’s using a global variable named “shop”.
- “store” shows it’s sourced from the environment. Please check if there’s a same-named variable in your current environment (environment variables take priority over module variables when names conflict, which is intended).

