# List Patient Notes

> Perform List Patient Notes through React Health.

Source: [https://genhealth.ai/docs/workflows/integrations/react-health/reacthealth_list_patient_notes](https://genhealth.ai/docs/workflows/integrations/react-health/reacthealth_list_patient_notes)

Integration: [React Health](https://genhealth.ai/docs/workflows/integrations/react-health.md)

- Handler: `reacthealth_list_patient_notes`

- Connection type: `reacthealth`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `0`

## Outputs

- `success` — Success
- `records` — Records
- `count` — Count
- `current_page` — Current Page
- `last_page` — Last Page
- `per_page` — Per Page
- `total` — Total
- `first_result_index` — First Result Index
- `last_result_index` — Last Result Index
- `next_page_url` — Next Page Url
- `prev_page_url` — Prev Page Url
- `truncated` — Truncated
- `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": [
    "patient_id"
  ],
  "properties": {
    "max_pages": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "total": {},
    "records": {},
    "success": {},
    "per_page": {},
    "last_page": {},
    "truncated": {},
    "current_page": {},
    "next_page_url": {},
    "prev_page_url": {},
    "last_result_index": {},
    "first_result_index": {}
  },
  "additionalProperties": true
}
```
