# Edit Patient Note

> Perform Edit Patient Note through ClearPathMD.

Source: [https://genhealth.ai/docs/workflows/integrations/clear-path-md/clearpath_update_patient_note](https://genhealth.ai/docs/workflows/integrations/clear-path-md/clearpath_update_patient_note)

Integration: [ClearPathMD](https://genhealth.ai/docs/workflows/integrations/clear-path-md.md)

- Handler: `clearpath_update_patient_note`

- Connection type: `clearpathmd`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `patient_note_id` — Patient Note Id (expression, required)
  Required literal value or workflow expression.
- `description` — Description (textarea, required)
  Required text value.
- `note_type_id` — Note Type Id (text, required)
  Required text value.
- `note_type_label` — Note Type Label (text, required)
  Required text value.
- `alert` — Alert (boolean, required)
  Required true-or-false value.

## Outputs

- `success` — Success
- `data` — Data
- `message` — Message
- `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",
    "patient_note_id",
    "description",
    "note_type_id",
    "note_type_label",
    "alert"
  ],
  "properties": {
    "alert": {
      "type": "boolean",
      "description": "Required true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "description": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "note_type_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "note_type_label": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "patient_note_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "data": {},
    "error": {},
    "message": {},
    "success": {}
  },
  "additionalProperties": true
}
```
