Update Patient Note
Perform Update Patient Note through React Health.
reacthealth_update_patient_notewritereacthealth
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Note Id
note_idexpressionrequiredRequired literal value or workflow expression.
- Expected Current Note
expected_current_noteexpressionrequiredRequired literal value or workflow expression.
- Replacement Note
replacement_noteexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccesspatient_idPatient Idnote_idNote IdupdatedUpdatedskippedSkippederrorError
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
{
"type": "object",
"required": [
"patient_id",
"note_id",
"expected_current_note",
"replacement_note"
],
"properties": {
"note_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"replacement_note": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"expected_current_note": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"note_id": {},
"skipped": {},
"success": {},
"updated": {},
"patient_id": {}
},
"additionalProperties": true
}