Application portal
Otito by default provides your customers an application portal, which they can use to view their request logs from your platform/product.

Otito customer portal
Embedding in your own dashboard
You just need an iframe to include this into your dashboard or any HTML page
Embedded App Portal screenshot
To add this to your application, just pass the URL you received in the previous example to the src property of the iframe:
<iframe
src="https://widget.otito.dev?key=fihjfohfofjhofjfohbfohg"
style="width: 100%; height: 100%; border: none;"
allow="clipboard-write"
loading="lazy"
>
</iframe>
The portal comes with it’s own stylings, but you can always make updates to it.
The portal will automatically grow/shink to fit into the given container on the page
Embedding in a NextJS app
You can install the react-iframe
npm package instead of using the native HTML
iframe
element as that is known to crash NextJS
With the API, you can build and whitelabel the app portal for your own specific usecase