# Get Patient Notes

> Perform Get Patient Notes through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_patient_notes](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_patient_notes)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_get_patient_notes`

- Connection type: `bonafide`

## Inputs

- `customer_id` — Customer Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `customer_id` — Customer Id
- `notes` — Notes
- `total_count` — Total Count
- `message` — Message
- `error_message` — Error Message
- `error` — Error

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",
  "required": [
    "customer_id"
  ],
  "properties": {
    "customer_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "notes": {},
    "message": {},
    "success": {},
    "customer_id": {},
    "total_count": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
