# Create Patient Notes (Bulk)

> Perform Create Patient Notes (Bulk) through NikoHealth.

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

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

- Handler: `nikohealth_create_patient_notes`

- Connection type: `nikohealth`

## Inputs

- `document_id` — Document Id (expression)
  Optional literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `notes` — Notes (expression)
  Optional literal value or workflow expression.
- `use_strategy_notes` — Use Strategy Notes (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `idempotency_fingerprint` — Idempotency Fingerprint (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
- `skipped` — Skipped
- `dry_run` — Dry Run
- `created_count` — Created Count
- `skipped_count` — Skipped Count
- `failed_count` — Failed Count
- `results` — Results
- `reason` — Reason
- `document_id` — Document Id
- `patient_id` — Patient Id

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": {
    "notes": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "dry_run": {
      "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"
    },
    "document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "record_summary": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "use_strategy_notes": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "idempotency_fingerprint": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "reason": {},
    "dry_run": {},
    "results": {},
    "skipped": {},
    "success": {},
    "patient_id": {},
    "document_id": {},
    "failed_count": {},
    "created_count": {},
    "skipped_count": {}
  },
  "additionalProperties": true
}
```
