// Renders the base iframe
src="https://api.dynamicinsight.com/embedded/?embeddedId={UUID4 provided by the DI app of the embed with the Asana flow group}"
// JS code to copy query string parameters and append them in the iframe src
<script language="javascript" type="text/javascript">
var queryParams = window.location.search
var queryParams = queryParams.replace('?', '&')
let url = document.getElementById('embedded').src
var readyURL = url.concat(queryParams)
document.getElementById('embedded').src = readyURL;