Skip to documentation
Brightree integration

Get Patient Notes

Perform Get Patient Notes through Brightree.

View as Markdown
brightree_get_patient_notes
readbrightree

Inputs

  • patient_key
    expression
    Patient Key

    Optional literal value or workflow expression.

  • note_types
    text
    Note Types

    Optional text value.

  • status
    text
    Status

    Optional text value.

Outputs

  • notes_by_typeNotes By Type
  • notesNotes

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "note_types": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "notes": {},
    "notes_by_type": {}
  },
  "additionalProperties": true
}
View all Brightree actions