Create Ambient Session
Initialize a new ambient session for patient encounter documentation
multilingual parameter is deprecated.Multilingual support is now enabled by default for all ambient sessions. You no longer need to pass this parameter. The API automatically supports conversations in multiple languages and generates the in English.ambient_session_id and return it in the response.
Use the ambient_session_id to identify the
in future API calls. Many Suki APIs use this ID to perform operations such as checking session status,
generating notes, retrieving transcripts, and other operations.
Store the ambient_session_id after you create a session, as it is required for most session-related operations.
Request body fields
Both fields in the request body are optional. Suki generates any values you omit.| Field | Type | Description |
|---|---|---|
ambient_session_id | string (UUID) | Unique identifier for this ambient session. Must be a string in UUID format. If omitted, Suki generates one and returns it in the response. |
encounter_id | string (UUID) | Unique identifier for the patient encounter (visit). Must be a string in UUID format. Use the same encounter_id across multiple session/create calls to group several ambient sessions under the same visit. If omitted, Suki generates one. |
encounter_id must be a string in UUID format. Numeric IDs from your system must be converted to a string (for example, String(id)) before you send them.Code examples
- Python
- TypeScript
Headers
sdp_suki_token
Unique identifier for the provider. Optional for standard partners. Required for Single Auth Token authentication, where multiple providers share the same partner_token.
"provider-123"
Body
CreateSessionRequest
Request body for the /session/create endpoint
Optional - UUID format
"123dfg-456dfg-789dfg-012dfg"
Optional - UUID format
"123dfg-456dfg-789dfg-012dfg"
Deprecated. Multilingual support is now true by default. To disable it, contact the Suki support team.
true
Response
Success Response
Response body for the /session/create endpoint
"123dfg-456dfg-789dfg-012dfg"