ambient_session_id. It does not include information about the patient, the current visit, or how the note should be structured.
Use Seed ambient session context to give Suki information about the current visit. Depending on your integration, this can include:
- Patient information
- Note sections to include
- Known diagnoses
- Specialty
- Related orders
When to provide context
Provide context at the point in your workflow where your application has the visit information available:- Use
POSTto seed the context after create, when the information is available before or at the start of recording. - Use
PATCHwith Add information during a visit when information becomes available or changes during the visit.
Keep context separate from other settings
Not all information belongs in visit context:What your application needs
Your integration should:- Collect the visit information available to your application.
- Create the ambient session.
- Seed the visit context with
POST, or update it withPATCHas additional information becomes available. - Complete context updates before ending the session.
- Keep preferences and structured-data output separate from visit context.
Choose what belongs in context
Send
- Provider specialty and role
- Patient and visit fields
- LOINC note sections
- Known diagnoses (ICD10 or IMO only)
emr.target_emrand medication orders context when you use orders
- After create, when the prepare-visit payload is ready
- Before End, including any mid-visit PATCH updates
Do Not Send
- HCC codes
verbositysection_format
- HCC is structured-data output only. See Diagnosis codes.
- Note style belongs in personalization, not visit context.
When to seed
Prepare Visit before or during Capture
Prepare Visit before or during Capture
Web SDK May Open the Note Later
Web SDK May Open the Note Later
patient_id, name, dob, and sex so the patient profile can render. See Use interoperable ambient notes across modalities.Clinician Changes Note Style
Clinician Changes Note Style
Re-Seeding Diagnoses from Structured Data
Re-Seeding Diagnoses from Structured Data
Prepare-visit flow
Think of context as the clinical frame around the recording, not as ambient configuration for mic format or note verbosity. Clinicians should recognize the prepare step as part of the visit: confirm patient, confirm which sections this note needs, optionally review known problems, then Start.When to use POST vs PATCH
sections with PATCH, send the complete list you want for the session. PATCH replaces the previous list. It does not append one new section.Recommended UI patterns
Specialty and role are often set once per provider and sent without a separate screen. Patient, sections, and optional diagnoses should be visible enough that clinicians trust what will shape the note.Confirm Patient and Sections
Optionally Review Known Diagnoses
Create, Then Seed
Stream, Then End
/ws/stream, capture the visit, and finish any last context updates before End.Can Context Arrive after Streaming Starts
Can Context Arrive after Streaming Starts
sections, send the complete list. See Add information during a visit.Where Does Note Verbosity Belong
Where Does Note Verbosity Belong
verbosity or section_format here.Can I Seed HCC from Structured Data
Can I Seed HCC from Structured Data
What If Web SDK Opens the Note Later
What If Web SDK Opens the Note Later
patient_id, name, dob, and sex so the patient profile can render across modalities.How to implement seed context
Create the Ambient Session
ambient_session_id. Do not send patient, sections, or note style on create. See Create an ambient clinical note.Build the Context Payload
sections, and any diagnoses or orders your product uses. Exclude HCC and personalization fields.POST Seed Context
ambient_session_id. POST replaces the entire context for the session.Stream, Update If Needed, Then End
/ws/stream. PATCH update if chart data arrives mid-visit. Complete context before End.Example: seed sections and patient before streaming
- Python
- TypeScript
visit_type, encounter_type, provider_role, and emr.target_emr against the Ambient Info API catalogs when your application needs them.Available cookbooks
Related feature guides
Note Sections
Specialties
Medication Orders
Problem-Based Charting
Implementation checklist
- Create first. Seed or update context after create. Do not put patient, sections, or note style on create.
- Finish every context call before End.
- POST seed replaces the entire context. PATCH replaces only the fields you send.
- Send ICD10 or IMO for diagnoses. Never send HCC in context.
- Do not send
verbosityorsection_formatin context. - For Web SDK later, seed
patient_id,name,dob, andsex. - Map note sections with LOINC codes from Note sections.