To pass the from your website to your Voiceflow application, you can follow these steps:
**Set up the `userID` in your web page:**```html<script> let userID = 'user-1234';</script>```
**Modify the Voiceflow chat load script to include the `userID`:**```html<script>(function (d, t) { var v = d.createElement(t), s = d.getElementsByTagName(t)[0]; v.onload = function () { window.voiceflow.chat.load({ verify: { projectID: 'XXXXXXXXXXXXXXXXXX',}, url: 'https://general-runtime.voiceflow.com/', versionID: 'production', userID: userID});} v.src = "https://cdn.voiceflow.com/widget/bundle.mjs"; v.type = "text/javascript"; s.parentNode.insertBefore(v, s);})(document, 'script');</script>```
This setup will pass the from your website to the Voiceflow chat. The value will be set as the built-in variable in your Voiceflow agent. However, it's important to note that you should avoid using identifying information like real names, emails, telephone numbers, or other identifying information in the due to potential security hazards.