# Create Patient Note

> Perform Create Patient Note through ClearPathMD.

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

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

- Handler: `clearpath_create_patient_note`

- Connection type: `clearpathmd`

## Inputs

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

## 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",
    "description"
  ],
  "properties": {
    "alert": {
      "type": "boolean",
      "default": false,
      "description": "Optional 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": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "note_type_label": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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