Learn how to use the Suki Web SDK inside an iframe.
Embed the Suki Web SDK in your web application by using an iframe. For the SDK to function correctly, grant the iframe specific permissions to access the microphone and clipboard.
Microphone access is required for ambient note capture and dictation.
Clipboard access is required for the copy-to-clipboard functionality in note sections.
To enable these features, add the allow attribute to your <iframe> element with the necessary permission values.
Modern browsers restrict access to sensitive APIs like the microphone from within an iframe for security reasons. If you do not explicitly grant permission, core SDK features will fail.
<iframe src="https://your-app-url.com" allow="microphone; clipboard-write; clipboard-read"> <!-- Your application with the Suki SDK is rendered here --></iframe>