Integrate WeSeeDo using an iframe
iframe
By using an iframe it is possible to fully integrate WeSeeDo into your own application. Simply put the personal meeting link that is generated for an agent or participant into an iframe.
When using iframes, you must set allow=”camera;microphone” to the iframe tag, otherwise the browser will deny access to request the camera and/or microphone.
Examples
Framing the entire application
Use the following HTML code to frame our application into your own application;
<iframe allow="camera;microphone" src="https://login.weseedo.nl"></iframe>
Note: to frame just a part of the application it’s possible to customize the footer menu with queries.
Framing a meeting
Use the following HTML code to frame just a specific application;
<iframe allow="camera;microphone" src="https://login.weseedo.nl/meeting/wCPjvYM7yf7KBwGVU0OsFG6DVBAGqZ5s_6PFMcsoR0GBeKIF8AhkngSqUy9UXBubA"></iframe>
Note: obtain the meeting URLs by calling the Meeting endpoint. Refer to our quick start guides for WeSeeDo Personal or WeSeeDo Direct or go to our OpenAPI specification page.
Customizing the look and feel of the iframe
For more information go to Customize the layout using querystring parameters.