Track Link Parameter

Hello, is there a way to see ALL of the parameters of the URL which was used to open my website? So for example if somebody would open my site using URL?par1=2&par2=3, could I somehow see that he had par1 and par2 set in his URL when entering my website?

Possibilities:

Campaign tracking: https://matomo.org/faq/reports/advanced-how-to-manually-build-campaign-tracking-urls/

Event tracking: https://matomo.org/guide/reports/event-tracking/
_paq.push(['trackEvent', category, action, name]);

Event tracking with values: https://matomo.org/faq/reports/implement-event-tracking-with-matomo/
_paq.push(['trackEvent', category, action, name, value]);

Event tracking with Pay Plugin Custom Dimension: https://matomo.org/guide/reporting-tools/custom-dimensions/
_paq.push(['trackEvent', category, action, name, value, {dimension1: 'DimensionValue'}]);

Or:

Matomo Settings → Websites → Manage →
Keep Page URL fragments when tracking Page URLs
→ Yes

1 Like