Get Patient Notes
Perform Get Patient Notes through Brightree.
brightree_get_patient_notesreadbrightree
Inputs
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Note Types
note_typestextOptional text value.
- Status
statustextOptional text value.
Outputs
notes_by_typeNotes By TypenotesNotes
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
}