Hi, we have a collection buttons in “Header / Link Bar”, and we want to send the user to a different pages when user clicks on them. Here is the code for when user clicks on one of the button:
```
{% update_property_link 'NPS' '8' 'https://www.trustpilot.com/evaluate/<our company name>' %}
```
Everything works fine so far. But now, we are send user’s email and first in the query params, Here is what we’ve tried:
```
{% update_property_link 'NPS' '8' 'https://www.trustpilot.com/evaluate/<...>?name={{first_name|title}}' %}
{% update_property_link 'NPS' '8' 'https://www.trustpilot.com/evaluate/reebelo.com?name’={{first_name|title}} %}
```
We tried a few more combinations as well, but nothing worked, could you please help us how to send user’s data in this case. A link to handle such cases in the doc is also welcome :)