Skip to main content

Edit Note With Instructions

POST 

https://us.api.nabla.com/v1/core/server/edit-note-with-instructions

Edit the Nabla-generated clinical note following human-readable text instructions, to customize and have more control over its content and structure.

Request​

Responses​

Patient instructions.

Authorization: http

name: bearertype: httpscheme: bearer
curl -L 'https://us.api.nabla.com/v1/core/server/edit-note-with-instructions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"instructions": "Add more details in the Plan section.",
"note": {
"title": "Fever and strong headache",
"sections": [
{
"key": "CHIEF_COMPLAINT",
"title": "Chief complaint",
"text": "Sleep disorder"
}
]
},
"note_locale": "ENGLISH_US",
"note_template": "GENERIC_MULTIPLE_SECTIONS",
"transcript_items": [
{
"text": "Also, I’m allergic to peanuts.",
"speaker_type": "DOCTOR"
}
],
"patient_context": "28 yo woman with diabetes."
}'
Request Collapse all
Base URL
https://us.api.nabla.com/v1/core/server
Auth
Body required
{
  "instructions": "Add more details in the Plan section.",
  "note": {
    "title": "Fever and strong headache",
    "sections": [
      {
        "key": "CHIEF_COMPLAINT",
        "title": "Chief complaint",
        "text": "Sleep disorder"
      }
    ]
  },
  "note_locale": "ENGLISH_US",
  "note_template": "GENERIC_MULTIPLE_SECTIONS",
  "transcript_items": [
    {
      "text": "Also, I’m allergic to peanuts.",
      "speaker_type": "DOCTOR"
    }
  ],
  "patient_context": "28 yo woman with diabetes."
}
ResponseClear

Click the Send API Request button above and see the response here!