# Update Patient Note

> Perform Update Patient Note through React Health.

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

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

- Handler: `reacthealth_update_patient_note`

- Connection type: `reacthealth`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `note_id` — Note Id (expression, required)
  Required literal value or workflow expression.
- `expected_current_note` — Expected Current Note (expression, required)
  Required literal value or workflow expression.
- `replacement_note` — Replacement Note (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `patient_id` — Patient Id
- `note_id` — Note Id
- `updated` — Updated
- `skipped` — Skipped
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "patient_id",
    "note_id",
    "expected_current_note",
    "replacement_note"
  ],
  "properties": {
    "note_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "replacement_note": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "expected_current_note": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "note_id": {},
    "skipped": {},
    "success": {},
    "updated": {},
    "patient_id": {}
  },
  "additionalProperties": true
}
```
