I have a Creator 6 app on Canada DC. I'm trying to pass a URL parameter to an HTML snippet page via Deluge but the variable always returns empty.
Setup:
submission_id, type Textinput.submission_id = input.submission_id;submission_id = "0";
submission_id = input.submission_id;
openUrl("https://creatorapp.zohocloud.ca/designwealth/environment/development/master-your-cash/#Page:MYC_Meeting_Tool?submission_id=14244000000006501", "same window");
What happens:
The URL loads correctly with the parameter visible in the address bar. However submission_id always returns "0" — the default value. The parameter is never received.
What I've confirmed works:
search receives URL parameters correctly using the same patternQuestion:
Why would one Text page variable receive URL parameters correctly while another does not? Is there something specific about the variable name submission_id that could cause it to be reserved or blocked?