Skip to documentation
React Health integration

Update Patient Note

Perform Update Patient Note through React Health.

View as Markdown
reacthealth_update_patient_note
writereacthealth

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • note_id
    expressionrequired
    Note Id

    Required literal value or workflow expression.

  • expected_current_note
    expressionrequired
    Expected Current Note

    Required literal value or workflow expression.

  • replacement_note
    expressionrequired
    Replacement Note

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • patient_idPatient Id
  • note_idNote Id
  • updatedUpdated
  • skippedSkipped
  • errorError

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
}
View all React Health actions