Skip to documentation
NikoHealth integration

Create Patient Notes (Bulk)

Perform Create Patient Notes (Bulk) through NikoHealth.

View as Markdown
nikohealth_create_patient_notes
writenikohealth

Inputs

  • document_id
    expression
    Document Id

    Optional literal value or workflow expression.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • notes
    expression
    Notes

    Optional literal value or workflow expression.

  • use_strategy_notes
    boolean
    Use Strategy Notes

    Optional true-or-false value.

    Default: "false"

  • idempotency_fingerprint
    expression
    Idempotency Fingerprint

    Optional literal value or workflow expression.

  • record_summary
    boolean
    Record Summary

    Optional true-or-false value.

    Default: "false"

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • dry_runDry Run
  • created_countCreated Count
  • skipped_countSkipped Count
  • failed_countFailed Count
  • resultsResults
  • reasonReason
  • document_idDocument Id
  • patient_idPatient 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
{
  "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
{
  "type": "object",
  "properties": {
    "reason": {},
    "dry_run": {},
    "results": {},
    "skipped": {},
    "success": {},
    "patient_id": {},
    "document_id": {},
    "failed_count": {},
    "created_count": {},
    "skipped_count": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions