Integration apps allow OMI to interact with external services and process data in real-time. This guide will walk you through creating both Memory Creation Triggers and Real-Time Transcript Processors.
uid
as a query parameter. Here is what to
expect:
POST /your-endpoint?uid=user123
Check the Notion CRM Python Example and it’s respective JSON format here.For Real-Time Transcript Processors: Your endpoint will receive a JSON payload containing the most recently transcribed segments, with both session_id and uid as query parameters. Here’s the structure:
POST /your-endpoint?session_id=abc123&uid=user123
Check the Realtime News checker Python Example and it’s respective JSON format here.
{'is_setup_completed': boolean}
.
The auth URL is optional as well and is utilized by users to setup your app. The uid
query paramater will be appended to this URL upon usage.
The setup instructions can be either a link to instructions or text instructions for users on how to setup your app.
uid
query parameter to it, which you can use to
associate setup or credentials with specific users.