How to pass parameter through Wix into a Zoho Forms formular

How to pass parameter through Wix into a Zoho Forms formular

I am currently trying without success to add a Zoho form to Wix where I can pass the URL parameters into the form.
Has anyone managed to do this successfully?

I've been working on this for many hours and just can't find a solution that works.

I am currently here. But I have no success with the parameters:
**********************************
HTML-Code:
<iframe id="myHtmlElement" src="https://forms.zohopublic.eu/..." 
  style="height:500px;width:99%;border:none;"></iframe>
**********************************

And Velo Dev:
**********************************
import wixLocation from 'wix-location'// Import der Wix Location API

$w.onReady(function () {
  // Funktion, um die URL des iFrames zu aktualisieren
  function updateIframeUrl() {
    const queryParams = wixLocation.query// Erfassen der aktuellen URL-Parameter

    // Konvertiert die Parameter in einen Query-String
    let paramsString = Object.keys(queryParams).map(key => `${encodeURIComponent(key)}=${encodeURIComponent(queryParams[key])}`).join('&');

    // Setzt die URL des iFrames mit den erfassten Parametern
    if (paramsString) {
      const iframeUrl = 'https://forms.zohopublic.eu/...?' + paramsString;
      $w("#myHtmlElement").src = iframeUrl;
    }
  }

  // Aktualisiert die iFrame-URL beim Laden der Seite
  updateIframeUrl();

  // Optional: Code, um auf Änderungen der URL-Parameter zu reagieren
  // Kann nützlich sein, wenn Parameter dynamisch geändert werden, während die Seite geöffnet ist.
  wixLocation.onChange(() => {
    updateIframeUrl();
  });
});
**********************************
Ole