Use case: redirect out to a separate landing page containing the widget.
Partner Hosted Website:
https://#PARTNERWEBSITE#/PetHub/?key1={value1}
PetHub Hosted Partner Landing Page:
https://pethub.io/#PARTNERCODE#/?key1={value1}
(See the table of available query parameters below)
Additional Required Code
The following script would also need to be included after the iFrame code:
<script>
var iframe = document.getElementById("pbph-widget")
if(typeof(iframe) != 'undefined' &&
iframe != null && window.location.search!= '') {
var url = (iframe.src)
var addQueryParam = url+window.location.search
iframe.src= addQueryParam
}
</script>