Skip to main content
This release adds Medication orders to the headed Web SDK. During ambient sessions, clinicians can review recommended medications in the built-in note UI, and your application receives structured order data on note submit. For the Ambient API, Dictation API, and Form Filling API, you now have the option to authenticate providers with a Single Auth Token shared across all clinicians. When you choose this option, you must send sdp_provider_id on every REST and WebSocket request so Suki can route each call to the correct provider.

What’s enhanced

June 2026 - Enhanced
Enhancements

Enhancements

Web SDKMedication orders: The Suki Web SDK now supports Medication orders generation during ambient sessions. During a visit, the SDK identifies recommended medications from the clinician’s conversation and displays them in the built-in Medication orders section for review. When the provider submits the note, the SDK returns structured order data in the note submission payload.To enable this capability, pass the LOINC code 52471-0 in the ambientOptions.sections array when you mount the Web SDK or set ambient options.
  • Medication orders are supported on v2 and v3 versions of the Web SDK.
  • Combine 52471-0 with your other note sections and a PBC section when you need to link orders to problems in the same session.
  • On note submit, parse orders.medication_orders from the payload and send validated orders to your EHR.

JavaScript SDK Playground Ambient tab with LOINC codes in the Sections field
Implementation
JavaScript
sdkClient.mount({
  rootElement: document.getElementById("suki-root"),
  encounter: encounter,
  ambientOptions: {
    sections: [
      { loinc: "52471-0" }, // Medication Orders LOINC code
    ],
  },
});
Why it matters: Clinicians can review and complete medication orders inside the headed Web SDK without leaving the ambient workflow. Your application receives structured JSON on note submission so you can validate and persist orders to the EHR the same way you handle note contents.Learn more in the Medication orders overview, Medication orders payload structure, and Web SDK changelog.API v1.4.0 | Form Filling API v1.1.0Single Auth Token authentication: You now have the option to authenticate providers in your application using a single authentication token for all clinicians. When you choose this option, your backend uses one shared partner_token instead of a per-user token. The shared token proves your organization is authorized, but it does not identify who is signed in. You must send sdp_provider_id on every REST API and WebSocket API call so Suki can route each request to the correct clinician.This applies to Ambient, Dictation, and Form Filling API requests. Send sdp_provider_id on Register and Login, and include it on every subsequent request along with sdp_suki_token.
JSON
{
    "sdp_suki_token": "your-suki-token", // sdp_suki_token required for all API calls
    // Required with Single Auth Token auth: send sdp_provider_id on Register, Login, and every API call
    "sdp_provider_id": "doc1234567890"
}
Why it matters: You can support multiple clinicians with one organization token without a separate IdP token per user, while Suki still knows which provider each request is for.Learn more in the Provider authentication guide.
Last modified on June 12, 2026