List Patient Follow-Ups
Perform List Patient Follow-Ups through React Health.
reacthealth_list_follow_upsreadreacthealth
Inputs
- Follow Up Date
follow_up_dateexpressionrequiredRequired literal value or workflow expression.
- Location
locationexpressionOptional literal value or workflow expression.
- My Follow Ups Only
my_follow_ups_onlybooleanOptional true-or-false value.
Default:
false - Pending Follow Ups Only
pending_follow_ups_onlybooleanOptional true-or-false value.
Default:
false - Order Direction
order_directionselectOptional selected identifier or value.
Default:
"asc"Options: Ascending ("asc"), Descending ("desc")
- 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": [
"follow_up_date"
],
"properties": {
"location": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"max_pages": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"follow_up_date": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"order_direction": {
"enum": [
"asc",
"desc"
],
"type": "string",
"default": "asc",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"my_follow_ups_only": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"pending_follow_ups_only": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"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
}