Create Patient Notes (Bulk)
Perform Create Patient Notes (Bulk) through NikoHealth.
nikohealth_create_patient_noteswritenikohealth
Inputs
- Document Id
document_idexpressionOptional literal value or workflow expression.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Notes
notesexpressionOptional literal value or workflow expression.
- Use Strategy Notes
use_strategy_notesbooleanOptional true-or-false value.
Default:
"false" - Idempotency Fingerprint
idempotency_fingerprintexpressionOptional literal value or workflow expression.
- Record Summary
record_summarybooleanOptional true-or-false value.
Default:
"false" - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessskippedSkippeddry_runDry Runcreated_countCreated Countskipped_countSkipped Countfailed_countFailed CountresultsResultsreasonReasondocument_idDocument Idpatient_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
}