I have a workflow on page load where I need to read URL query parameters.
Im trying to use Browser.query.
When I paste my query string to url in Editor right after page path, Browser.query is empty. when I reload page with new query string, it redirects to my home page so I cannot get my workflow tested.
I tried to create ?query variables, doesn’t work either. i’m doing something wrong
How to test url query in Editor? how to acquire/extract it correctly from string?
In URL, I have added not one variable but few: ?param1=x¶m2=y, and misunderstood that it should be parsed as few query parameters. But i removed second param and “?param1=x” works well in URL
I’m trying to sand a date string to a query parameter
For example button is a link to a page and query param is dt then a dynamic date object formatted with
formatDate({dataobject},”MM/DD/YYYY”)
the output is a date string for example “11/24/2025“
But when I’m clicking the link it does not Populate the variable dt which I set to be a query type,
When I’m trying to send the full date object it does work