Page variable not receiving URL parameter in Creator 6 HTML snippet Deluge — Canada DC

Page variable not receiving URL parameter in Creator 6 HTML snippet Deluge — Canada DC

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:

  • Page: MYC_Meeting_Tool
  • Page variable declared: submission_id, type Text
  • Page Script tab contains: input.submission_id = input.submission_id;
  • HTML snippet Deluge block contains:
submission_id = "0";
submission_id = input.submission_id;
  • The page is opened via a report action button using:
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:

  • A separate Text page variable named search receives URL parameters correctly using the same pattern
  • Number type page variables do NOT work for URL parameter passing — Text type is confirmed required

Question: 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?