Skip to main content
POST
Create Patient Note
These notes are intended for use by provider users only to store internal context about a patient. Silna does not use these notes to complete tasks.

Creating a Patient Note

A patient note can contain text, an attached file, or both. At least one of note or file_id must be provided.
  1. To attach a file, first upload it using the Upload File API and use the returned file id as the file_id.
  2. Use this endpoint to create the note with the patient_id of the patient you want to add the note to.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

patient_id
string
required

Body

application/json
note
string | null

The note text. At least one of note or file_id must be provided.

file_id
string<uuid> | null

UUID of an uploaded file to attach to this note. At least one of note or file_id must be provided.

Response

patient_note_id
string<uuid>
required