Skip to main content

Generate patient instructions

POST 

https://us.api.nabla.com/v1/core/server/generate-patient-instructions

Generates clear, post-visit instructions based on what the healthcare provider communicated to the patient during the encounter. These instructions are intended to help patients better understand and follow their care plan.

Provider review

Patient instructions are generated automatically and may be translated. A licensed healthcare provider should review and approve them before sharing with the patient, especially when translation is involved.

This endpoint supports multiple input formats and languages to fit a variety of clinical workflows.

Generates post-visit instructions for the patient. This extracts and summarizes the instructions the healthcare provider gave to the patient during the encounter.

Requestโ€‹

Responsesโ€‹

Patient instructions.

Authorization: http

name: bearertype: httpscheme: bearer
curl -L 'https://us.api.nabla.com/v1/core/server/generate-patient-instructions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"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",
"instructions_locale": "ENGLISH_US",
"recipient_type": "PATIENT"
}'
Request Collapse all
Base URL
https://us.api.nabla.com/v1/core/server
Auth
Body required
{
  "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",
  "instructions_locale": "ENGLISH_US",
  "recipient_type": "PATIENT"
}
ResponseClear

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