Skip to main content
POST
/
api
/
v1
/
ambient
/
session
/
{ambient_session_id}
/
metadata
Seeds metadata for the ambient session.
curl --request POST \
  --url https://sdp.suki-stage.com/api/v1/ambient/session/{ambient_session_id}/metadata \
  --header 'Content-Type: application/json' \
  --header 'sdp_suki_token: <sdp_suki_token>' \
  --data '{
  "note_sections": [
    {
      "description": "The main reason for the visit",
      "title": "CHIEF COMPLAINT"
    }
  ],
  "patient_dob": "2000-01-01",
  "patient_sex": "male",
  "provider_specialty": "CARDIOLOGY"
}'
This response has no body data.
This end point is deprecated
We no longer support this endpoint. If you are using it, please update your code to use the Context endpoint instead.

Headers

sdp_suki_token
string
required

sdp_suki_token

Path Parameters

ambient_session_id
string
required

ambient_session_id

Body

application/json

Metadata

Request body for the /session/{ambient_session_id}/metadata endpoint

note_sections
object[]

Optional - Default note sections used if not provided

patient_dob
string

Optional - {YYYY-MM-DD}

Example:

"2000-01-01"

patient_sex
enum<string>

Optional

Available options:
male,
female,
other,
unknown
Example:

"male"

provider_specialty
string

Optional - Defaults to FAMILY_MEDICINE if not provided

Example:

"CARDIOLOGY"

I