> ## Documentation Index
> Fetch the complete documentation index at: https://developer.suki.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Form Filling API Changelog

> Release notes for the Form Filling APIs.

Suki's API versioning policy is based on the semantic versioning standard. For example, in version 1.2.3, 1 is the major version, 2 is the minor version, and 3 is the patch version.

When we release a new API version for new features or bug fixes, we increment one of these three version components depending on the type of change introduced.

<Info icon="info" color="orange">
  **API version numbering policy**

  All Suki REST APIs are currently in `v1` version.

  **Release version**

  The release version in this changelog page represents the incremental progress. It is not the API version. It tracks new optional fields, performance improvements, new endpoints, and other changes.
</Info>

<Update label="v1.1.0" description="June 2026" tags={["Enhancements"]}>
  ### Enhancements

  * Suki now supports **Single Auth Token authentication**: your backend can use one shared `partner_token` for all clinicians instead of a per-user token.
    The shared token proves your organization is authorized, but it does not identify who is signed in. If you use this model, you **must** send `sdp_provider_id`
    on every API call so Suki can route each call to the correct clinician.

  Learn more in the [Provider authentication](/api-reference/provider-authentication) documentation.

  ```json JSON theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
  {
      "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"
  }
  ```
</Update>

<Update label="v1.0.0" description="May 2026" tag="LATEST" tags={["New Endpoints"]}>
  ### New endpoints

  We introduced the Form Filling APIs to enable you to create and manage Form filling sessions, retrieve structured data, submit feedback, and get info about medical form templates for nursing use cases and data collection during in-person visits or virtual patient encounters.

  * **Form Filling APIs**: Added new endpoints to create and manage Form filling sessions, retrieve structured data, submit feedback, and get info about medical form templates.

    * <Badge color="green" size="sm">POST</Badge> [/api/v1/form-filling/session/create](/form-filling-api-reference/form-filling-sessions/create)
    * <Badge color="green" size="sm">POST</Badge> [/api/v1/form-filling/session/{ambient_session_id}/context](/form-filling-api-reference/form-filling-sessions/context)
    * <Badge color="green" size="sm">PATCH</Badge> [/api/v1/form-filling/session/{ambient_session_id}/context](/form-filling-api-reference/form-filling-sessions/update-context)
    * <Badge color="green" size="sm">POST</Badge> [/api/v1/form-filling/session/{ambient_session_id}/end](/form-filling-api-reference/form-filling-sessions/end)
    * <Badge color="green" size="sm">GET</Badge> [/api/v1/form-filling/session/{ambient_session_id}/status](/form-filling-api-reference/form-filling-sessions/status)
    * <Badge color="green" size="sm">GET</Badge> [/api/v1/form-filling/session/{ambient_session_id}/structured-data](/form-filling-api-reference/form-filling-sessions/structured-data)
    * <Badge color="green" size="sm">POST</Badge> [/api/v1/form-filling/session/{ambient_session_id}/{entity}/feedback](/form-filling-api-reference/form-filling-sessions/feedback)
    * <Badge color="green" size="sm">GET</Badge> [/api/v1/info/suki-medical-form-templates](/form-filling-api-reference/info/suki-medical-form-templates)

  Learn more about the Form Filling APIs in the [Form Filling API overview](/form-filling-api-reference/overview).
</Update>
