Quick summary
Ambient interoperability enables multiple Suki ambient products to contribute to the same clinical note for a patient visit. By supplying an
emr_encounter_id when creating ambient sessions, Suki associates those sessions with one shared note. This allows clinicians to start recording on one product, continue or re-ambient from another, review and edit in other modalities, and retrieve the latest note through the Ambient APIs, all without creating separate notes.Supported interoperable modalities: Ambient APIs, Mobile SDK, Headless Web SDK(coming soon), and Web SDK.
emr_encounter_id, they work with a single shared clinical note for that patient encounter.
This lets clinicians and you build product integrations without losing context when switching between different ambient modalities. Clinicians can:
- Start an ambient session using the Mobile SDK.
- Start a new ambient session on the Web SDK for the same clinical note.
- Open the same clinical note in the Mobile SDK to review, edit, and submit it.
- Retrieve the latest version of the note through the Ambient APIs using the
emr_encounter_id.
How interoperability works
The core of ambient interoperability is a shared clinical note. When you create an ambient session and provide anemr_encounter_id, Suki creates a new clinical note for that patient encounter, or reuses the existing one if a note already exists for the same encounter.
Every compatible ambient session created with that emr_encounter_id is linked to the same clinical note, regardless of which Suki product started the session.
The products do not share audio recordings. Instead, each ambient session contributes to the same clinical note. Because every supported ambient product references the note using the same emr_encounter_id, clinicians can continue recording, re-ambient, review, edit, or retrieve the same note across different products during the patient visit.
Headless and Headed products
Ambient interoperability works across all Suki products that support ambient workflows.
Because every product references the same note, you can combine headless and headed integrations within the same patient encounter.
How to implement interoperable Ambient sessions
To create interoperable ambient sessions, provide the sameemr_encounter_id whenever sessions belong to the same patient visit.
During the ambient workflow for the same patient visit, you need to:
1
Create an Ambient Session
Create an ambient session using the same
emr_encounter_id as the previous sessions.2
Receive the Shared Note Identifiers
Suki creates a shared clinical note and returns identifiers, including the
composition_id.3
Create Additional Sessions for the Same Visit
Create additional ambient sessions for the same visit using the same
emr_encounter_id and encounter_id.4
Continue Across Products
Continue recording, re-ambient, review, or edit from any supported Suki product that supports ambient workflows.
5
Retrieve the Latest Note
Retrieve the latest note content through the Ambient APIs using the
composition_id.If you do not provide an
emr_encounter_id, Suki creates a normal ambient session, but it remains independent and cannot participate in interoperability.Common integration patterns and use cases
Design your application interoperability around the clinician’s journey, not around a specific Suki product. A clinician may begin documentation on one device and finish it somewhere else during the same patient encounter. The following patterns show common ways to build interoperable ambient workflows using a sharedemr_encounter_id.
Capture on Mobile, Review on Web
Create the ambient session from the Mobile SDK using the patient’s
emr_encounter_id. Later, open the same note in the Web SDK so the clinician can review, edit, and submit it.Capture with APIs, Review in Web SDK
Use the Ambient APIs to create the session and stream audio from your backend. Open the resulting note in the Web SDK for clinician review and submission.
Continue Documentation Across Products
Start another ambient session for the same patient encounter from Mobile, Headless, Web, or the Ambient APIs using the same
emr_encounter_id. Each recording contributes to the same clinical note.Keep Your Application in Sync
After clinicians edit the note in the Web SDK, retrieve the latest composition through the Ambient APIs so your application always displays the current version.
Headless Capture, Headed Review
Capture audio in your own React experience using the Headless Web SDK, then transition to the Web SDK when the clinician is ready to review and submit the note.
One Encounter, One Shared Note
Use the same
emr_encounter_id whenever you create or continue ambient sessions for the patient encounter so every compatible Suki product works with the same note.Design principles for interoperable Ambient workflows
Interoperable ambient sessions let multiple Suki products participate in the same clinical documentation workflow. Instead of treating each SDK as an isolated system, design your application around the patient encounter and the shared clinical note. Keep the following principles in mind when building your integration:- Use the encounter as the source of truth. Associate every ambient session for a patient visit with the same
emr_encounter_id. This allows Suki to identify all sessions that belong to the same encounter. - Choose products based on workflow, not data ownership. Mobile SDK, Headless Web SDK, Web SDK, and the Ambient APIs all provide different user experiences, but they can contribute to the same clinical note.
- Build for handoffs between products. Clinicians can begin recording on one device, continue from another, or review later in a different interface without creating separate notes.
- Always retrieve the latest composition. After additional recordings or clinician edits, use the Ambient APIs and the returned
composition_idto retrieve the latest version of the shared note before writing back to your EHR or downstream systems.
Related topics
Identifiers
Understand the
emr_encounter_id, composition_id, note_id, and related identifiers used by interoperable ambient sessions.Use Ambient Across Modalities
Follow a complete workflow that creates, continues, and retrieves interoperable ambient notes.
Best Practices and FAQs
Review implementation guidance, conflict handling, offline behavior, and frequently asked questions.
Create Ambient Session API
See the request and response fields required for interoperable ambient sessions.
Mobile SDK Interoperability
Pass
kEmrEncounterId, handle remote conflict and peer terminate, and read shared notes on iOS.