List Patient Notes
Perform List Patient Notes through React Health.
reacthealth_list_patient_notesreadreacthealth
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Max Pages
max_pagesnumberOptional numeric value.
Default:
0
Outputs
successSuccessrecordsRecordscountCountcurrent_pageCurrent Pagelast_pageLast Pageper_pagePer PagetotalTotalfirst_result_indexFirst Result Indexlast_result_indexLast Result Indexnext_page_urlNext Page Urlprev_page_urlPrev Page UrltruncatedTruncatederrorError
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
}