Using URL parameters
Using data on the URL within your templates
Tracking and UTM fields
Macros
You can access UTM values using macros within your templates and form fields.
Other URL parameters
If a param is not the list of pre-approved parameters above under Tracking and UTM fields, then that URL parameter will need to be whitelisted in your project settings.
But once whitelisted, you can use them in your templates
Macros
You can access these whitelisted URL parameters in your template using macros.
Example: https://www.example.com/?campaignid=12345
Would output
Use in templating
Both UTM (campaign parameters) and the other URL parameters are available within jinja templates in the same place.
Example: https://www.example.com/?promo=august&utm_campaign=email
Would output
To easily access these values in javascript, you can output request_params to JSON
Last updated