Skip to documentation
React Health integration

List Patient Notes

Perform List Patient Notes through React Health.

View as Markdown
reacthealth_list_patient_notes
readreacthealth

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • max_pages
    number
    Max Pages

    Optional numeric value.

    Default: 0

Outputs

  • successSuccess
  • recordsRecords
  • countCount
  • current_pageCurrent Page
  • last_pageLast Page
  • per_pagePer Page
  • totalTotal
  • first_result_indexFirst Result Index
  • last_result_indexLast Result Index
  • next_page_urlNext Page Url
  • prev_page_urlPrev Page Url
  • truncatedTruncated
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "patient_id"
  ],
  "properties": {
    "max_pages": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "total": {},
    "records": {},
    "success": {},
    "per_page": {},
    "last_page": {},
    "truncated": {},
    "current_page": {},
    "next_page_url": {},
    "prev_page_url": {},
    "last_result_index": {},
    "first_result_index": {}
  },
  "additionalProperties": true
}
View all React Health actions