# Get Patient Notes

> Perform Get Patient Notes through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_get_patient_notes](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_get_patient_notes)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_get_patient_notes`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression)
  Optional literal value or workflow expression.
- `note_types` — Note Types (text)
  Optional text value.
- `status` — Status (text)
  Optional text value.

## Outputs

- `notes_by_type` — Notes By Type
- `notes` — Notes

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "notes": {},
    "notes_by_type": {}
  },
  "additionalProperties": true
}
```
