# Create Patient Note

> Perform Create Patient Note through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_create_patient_note](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_create_patient_note)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_create_patient_note`

- Connection type: `nikohealth`

## Inputs

- `note_request` — Note Request (expression)
  Optional literal value or workflow expression.
- `document_id` — Document Id (expression)
  Optional literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `subject` — Subject (text)
  Optional text value.
- `description` — Description (textarea)
  Optional text value.
- `is_pinned` — Is Pinned (boolean)
  Optional true-or-false value.
  Default: `false`
- `skip_if_empty` — Skip If Empty (boolean)
  Optional true-or-false value.
  Default: `false`
- `idempotency_fingerprint` — Idempotency Fingerprint (expression)
  Optional literal value or workflow expression.
- `auto_push_action_key` — Auto Push Action Key (expression)
  Optional literal value or workflow expression.
- `record_summary` — Record Summary (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `note` — Note
- `skipped` — Skipped
- `dry_run` — Dry Run
- `document_id` — Document Id
- `patient_id` — Patient Id
- `resource_type` — Resource Type
- `action_type` — Action Type
- `note_text` — Note Text
- `idempotent` — Idempotent
- `message` — Message
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "is_pinned": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "description": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    },
    "document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "note_request": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_if_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "record_summary": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "auto_push_action_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "idempotency_fingerprint": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "note": {},
    "error": {},
    "dry_run": {},
    "message": {},
    "skipped": {},
    "success": {},
    "note_text": {},
    "idempotent": {},
    "patient_id": {},
    "action_type": {},
    "document_id": {},
    "resource_type": {}
  },
  "additionalProperties": true
}
```
